Class PathArcAbs
- Namespace
- ImageMagick
- Assembly
- Magick.NET-Q16-AnyCPU.dll
Draws an elliptical arc from the current point to (X, Y) using absolute coordinates. The size and orientation of the ellipse are defined by two radii(RadiusX, RadiusY) and an RotationX, which indicates how the ellipse as a whole is rotated relative to the current coordinate system. The center of the ellipse is calculated automagically to satisfy the constraints imposed by the other parameters. UseLargeArc and UseSweep contribute to the automatic calculations and help determine how the arc is drawn. If UseLargeArc is true then draw the larger of the available arcs. If UseSweep is true, then draw the arc matching a clock-wise rotation.
public sealed class PathArcAbs : IPathArc, IPath
- Inheritance
-
PathArcAbs
- Implements
-
IPathArcIPath
- Inherited Members
Constructors
PathArcAbs(params PathArc[])
Initializes a new instance of the PathArcAbs class.
public PathArcAbs(params PathArc[] coordinates)
Parameters
coordinates
PathArc[]The coordinates to use.
PathArcAbs(IEnumerable<PathArc>)
Initializes a new instance of the PathArcAbs class.
public PathArcAbs(IEnumerable<PathArc> coordinates)
Parameters
coordinates
IEnumerable<PathArc>The coordinates to use.
Properties
Coordinates
Gets the coordinates.
public IReadOnlyList<PathArc> Coordinates { get; }
Property Value
- IReadOnlyList<PathArc>