Click or drag to resize

VectorGraphicPathCubicCurveTo Method

Draws a cubic Bezier curve from the last end point of the current path to a given curve end point.

Namespace: RAYLASE.Marker.VectorGraphicElement
Assembly: RAYLASE.Marker.VectorGraphicElement (in RAYLASE.Marker.VectorGraphicElement.dll) Version: 2.19.0
Syntax
C#
public virtual BaseMetafileCommand CubicCurveTo(
	dvec3 firstControlPoint,
	dvec3 secondControlPoint,
	dvec3 endPoint
)

Parameters

firstControlPoint  dvec3
The first control point.
secondControlPoint  dvec3
The second control point.
endPoint  dvec3
The end point of the curve.

Return Value

BaseMetafileCommand
The generated metafile command to draw a cubic Bezier curve.
See Also