Struct Ellipse
Contains the center point, x-radius, and y-radius of an ellipse.
public struct Ellipse
- Inherited Members
Constructors
Ellipse(RawVector2, float, float)
Initializes a new instance of the Ellipse struct.
public Ellipse(RawVector2 center, float radiusX, float radiusY)
Parameters
Fields
Point
The center point of the ellipse.
public RawVector2 Point
Field Value
- RawVector2
RadiusX
The X-radius of the ellipse.
public float RadiusX
Field Value
RadiusY
The Y-radius of the ellipse.
public float RadiusY