Skip to content

Commit bed3722

Browse files
Actually use the width
1 parent 52c5312 commit bed3722

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/ImageSharp.Drawing/Shapes/OutlinePathExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public static IPath GenerateOutline(this IPath path, float width, JointStyle joi
4848
List<Polygon> polygons = [];
4949
foreach (ISimplePath simplePath in path.Flatten())
5050
{
51-
PolygonStroker stroker = new();
51+
PolygonStroker stroker = new() { Width = width };
5252
Polygon polygon = stroker.ProcessPath(simplePath.Points.Span);
5353
polygons.Add(polygon);
5454
}

0 commit comments

Comments
 (0)