Skip to content

Commit e66dfdb

Browse files
committed
fixed EllipticArc rotation direction
1 parent 5444072 commit e66dfdb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/ImageSharp.Drawing/Shapes/EllipticalArcLineSegment.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public EllipticalArcLineSegment(float x, float y, float radiusX, float radiusY,
4343
this.y = y;
4444
this.radiusX = radiusX;
4545
this.radiusY = radiusY;
46-
this.rotation = rotation % 360;
46+
this.rotation = -rotation % 360;
4747
this.startAngle = startAngle % 360;
4848
this.transformation = transformation;
4949
this.sweepAngle = sweepAngle;

0 commit comments

Comments
 (0)