Click or drag to resize

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.VectorGraphicElement
Assembly: RAYLASE.Marker.VectorGraphicElement (in RAYLASE.Marker.VectorGraphicElement.dll) Version: 2.19.0
Syntax
C#
public 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

BaseMetafileCommand
The generated metafile command to draw an ellipse.
See Also