Table of Contents

Interface ISimplePath

Namespace
SixLabors.ImageSharp.Drawing
Assembly
SixLabors.ImageSharp.Drawing.dll

Represents a simple (non-composite) path defined by a series of points.

public interface ISimplePath

Properties

IsClosed

Gets a value indicating whether this instance is a closed path.

bool IsClosed { get; }

Property Value

bool

Points

Gets the points that make this up as a simple linear path.

ReadOnlyMemory<PointF> Points { get; }

Property Value

ReadOnlyMemory<PointF>