[]
Represents an ellipse-like closed path.
public class EllipticFigure : IFigure
Initializes a new instance of the EllipticFigure class.
public EllipticFigure(RectangleF bounds)
bounds
System.Drawing.RectangleFInitializes a new instance of the EllipticFigure class.
public EllipticFigure(float x, float y, float width, float height)
x
floaty
floatwidth
floatheight
floatGets or sets the bounds for the elliptic region.
public RectangleF Bounds { get; set; }
Gets or sets a value indicating if the points should be arranged counterclockwise.
public bool Counterclockwise { get; set; }
Gets or sets the transformation matrix.
public Matrix3x2 Transform { get; set; }
Creates a copy of the current figure.
public IFigure Clone()