Click or drag to resize

VectorGraphicPathArcTo Method

Draws an arc from the last end point of the current path using a given angle 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 ArcTo(
	double angle,
	dvec3 centerPoint,
	bool isHelix = false
)

Parameters

angle  Double
The sweep angle of the arc. Positive value means a counterclockwise direction.
centerPoint  dvec3
The center of the arc.
isHelix  Boolean  (Optional)
Creates a helix if true.

Return Value

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