Ellipse Constructor (Vector3, 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(
Vector3 center,
double majorAxis,
double minorAxis
)
Public Sub New (
center As Vector3,
majorAxis As Double,
minorAxis As Double
)
public:
Ellipse(
Vector3 center,
double majorAxis,
double minorAxis
)
new :
center : Vector3 *
majorAxis : float *
minorAxis : float -> Ellipse
CONSTRUCTOR(
center AS Vector3,
majorAxis AS REAL8,
minorAxis AS REAL8
)
Parameters
- center
- Type: DXFReaderNETVector3
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