Ellipse Constructor (Vector2, Double, Double)
|
Initializes a new instance of the Ellipse class.
Namespace:
DXFReaderNET.Entities
Assembly:
DXFReaderNET (in DXFReaderNET.dll) Version: 20.10.54
Syntax public Ellipse(
Vector2 center,
double majorAxis,
double minorAxis
)
Public Sub New (
center As Vector2,
majorAxis As Double,
minorAxis As Double
)
public:
Ellipse(
Vector2 center,
double majorAxis,
double minorAxis
)
new :
center : Vector2 *
majorAxis : float *
minorAxis : float -> Ellipse
CONSTRUCTOR(
center AS Vector2,
majorAxis AS REAL8,
minorAxis AS REAL8
)
Parameters
- center
- Type: DXFReaderNETVector2
Ellipse center in object coordinates. - majorAxis
- Type: SystemDouble
Ellipse major axis. - minorAxis
- Type: SystemDouble
Ellipse minor axis.
Remarks The center Z coordinate represents the elevation of the arc along the normal.
See Also