[]
Represents a path consisting of straight line segments closing in a loop.
public class FreeFormPolygon : IFigure
Initializes a new instance of the FreeFormPolygon class.
public FreeFormPolygon(params PointF[] points)
points
System.Drawing.PointF[]Gets or sets the array of source points (before their transformation).
public PointF[] Points { get; set; }
Gets or sets the transformation matrix.
public Matrix3x2 Transform { get; set; }
Creates a copy of the current figure.
public IFigure Clone()
Call this method if some points in the Points array were changed from user code.
public void Invalidate()
Reverses the order of points in the figure.
public void Reverse()