VectorGraphicPathEllipseTo Method |
Draws an ellipse from the last end point of the current path using a given orientation, a given sweep angle, a given axes ratio, and a given center point.
Namespace: RAYLASE.Marker.VectorGraphicElementAssembly: RAYLASE.Marker.VectorGraphicElement (in RAYLASE.Marker.VectorGraphicElement.dll) Version: 2.19.0
Syntaxpublic virtual BaseMetafileCommand EllipseTo(
double orientationAngle,
double sweepAngle,
double axesRatio,
dvec3 centerPoint,
bool isHelix = false
)
Parameters
- orientationAngle Double
- The orientation of the ellipse. Positive value means a counterclockwise direction.
- sweepAngle Double
-
The sweep angle of the ellipse. Positive value means a counterclockwise direction. This angle is the angle used in the parametric equation
representations of the ellipse.
- axesRatio Double
- The ratio of the minor axis to the major axis.
- centerPoint dvec3
- The center point of the ellipse.
- isHelix Boolean (Optional)
- Creates a helix if true.
Return Value
BaseMetafileCommandThe generated metafile command to draw an ellipse.
See Also