You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/ImageSharp.Drawing/Shapes/EllipticalArcLineSegment.cs
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -31,7 +31,7 @@ public sealed class EllipticalArcLineSegment : ILineSegment
31
31
/// <param name="y"> The y-coordinate of the center point of the ellips from which the arc is taken.</param>
32
32
/// <param name="radiusX">X radius of the ellipsis.</param>
33
33
/// <param name="radiusY">Y radius of the ellipsis.</param>
34
-
/// <param name="rotation">The rotation of (<paramref name="radiusX"/> to the X-axis and (<paramref name="radiusY"/> to the Y-axis, measured in degrees anticlockwise.</param>
34
+
/// <param name="rotation">The rotation of (<paramref name="radiusX"/> to the X-axis and (<paramref name="radiusY"/> to the Y-axis, measured in degrees clockwise.</param>
35
35
/// <param name="startAngle">The Start angle of the ellipsis, measured in degrees anticlockwise from the Y-axis.</param>
36
36
/// <param name="sweepAngle"> The angle between (<paramref name="startAngle"/> and the end of the arc. </param>
37
37
/// <param name="transformation">The Tranformation matrix, that should be used on the arc.</param>
@@ -43,7 +43,7 @@ public EllipticalArcLineSegment(float x, float y, float radiusX, float radiusY,
@@ -225,7 +225,7 @@ public PathBuilder AddBezier(PointF startPoint, PointF controlPoint1, PointF con
225
225
/// <param name="center"> The center <see cref="PointF"/> of the ellips from which the arc is taken.</param>
226
226
/// <param name="radiusX">X radius of the ellipsis.</param>
227
227
/// <param name="radiusY">Y radius of the ellipsis.</param>
228
-
/// <param name="rotation">The rotation of (<paramref name="radiusX"/> to the X-axis and (<paramref name="radiusY"/> to the Y-axis, measured in degrees anticlockwise.</param>
228
+
/// <param name="rotation">The rotation of (<paramref name="radiusX"/> to the X-axis and (<paramref name="radiusY"/> to the Y-axis, measured in degrees clockwise.</param>
229
229
/// <param name="startAngle">The Start angle of the ellipsis, measured in degrees anticlockwise from the Y-axis.</param>
230
230
/// <param name="sweepAngle"> The angle between (<paramref name="startAngle"/> and the end of the arc. </param>
@@ -237,7 +237,7 @@ public PathBuilder AddBezier(PointF startPoint, PointF controlPoint1, PointF con
237
237
/// <param name="center"> The center <see cref="Point"/> of the ellips from which the arc is taken.</param>
238
238
/// <param name="radiusX">X radius of the ellipsis.</param>
239
239
/// <param name="radiusY">Y radius of the ellipsis.</param>
240
-
/// <param name="rotation">The rotation of (<paramref name="radiusX"/> to the X-axis and (<paramref name="radiusY"/> to the Y-axis, measured in degrees anticlockwise.</param>
240
+
/// <param name="rotation">The rotation of (<paramref name="radiusX"/> to the X-axis and (<paramref name="radiusY"/> to the Y-axis, measured in degrees clockwise.</param>
241
241
/// <param name="startAngle">The Start angle of the ellipsis, measured in degrees anticlockwise from the Y-axis.</param>
242
242
/// <param name="sweepAngle"> The angle between (<paramref name="startAngle"/> and the end of the arc. </param>
@@ -250,7 +250,7 @@ public PathBuilder AddBezier(PointF startPoint, PointF controlPoint1, PointF con
250
250
/// <param name="y"> The y-coordinate of the center point of the ellips from which the arc is taken.</param>
251
251
/// <param name="radiusX">X radius of the ellipsis.</param>
252
252
/// <param name="radiusY">Y radius of the ellipsis.</param>
253
-
/// <param name="rotation">The rotation of (<paramref name="radiusX"/> to the X-axis and (<paramref name="radiusY"/> to the Y-axis, measured in degrees anticlockwise.</param>
253
+
/// <param name="rotation">The rotation of (<paramref name="radiusX"/> to the X-axis and (<paramref name="radiusY"/> to the Y-axis, measured in degrees clockwise.</param>
254
254
/// <param name="startAngle">The Start angle of the ellipsis, measured in degrees anticlockwise from the Y-axis.</param>
255
255
/// <param name="sweepAngle"> The angle between (<paramref name="startAngle"/> and the end of the arc. </param>
@@ -268,7 +268,7 @@ public PathBuilder AddEllipticalArc(int x, int y, int radiusX, int radiusY, int
268
268
/// <param name="y"> The y-coordinate of the center point of the ellips from which the arc is taken.</param>
269
269
/// <param name="radiusX">X radius of the ellipsis.</param>
270
270
/// <param name="radiusY">Y radius of the ellipsis.</param>
271
-
/// <param name="rotation">The rotation of (<paramref name="radiusX"/> to the X-axis and (<paramref name="radiusY"/> to the Y-axis, measured in degrees anticlockwise.</param>
271
+
/// <param name="rotation">The rotation of (<paramref name="radiusX"/> to the X-axis and (<paramref name="radiusY"/> to the Y-axis, measured in degrees clockwise.</param>
272
272
/// <param name="startAngle">The Start angle of the ellipsis, measured in degrees anticlockwise from the Y-axis.</param>
273
273
/// <param name="sweepAngle"> The angle between (<paramref name="startAngle"/> and the end of the arc. </param>
0 commit comments