Interface ISimplePath
Represents a simple (non-composite) path defined by a series of points.
Namespace: SixLabors.ImageSharp.Drawing
Assembly: SixLabors.ImageSharp.Drawing.dll
Syntax
public interface ISimplePath
Properties
| Edit this page View SourceIsClosed
Gets a value indicating whether this instance is a closed path.
Declaration
bool IsClosed { get; }
Property Value
Type | Description |
---|---|
bool |
Points
Gets the points that make this up as a simple linear path.
Declaration
ReadOnlyMemory<PointF> Points { get; }
Property Value
Type | Description |
---|---|
ReadOnlyMemory<PointF> |