Click or drag to resize

CommandListAppendCubicBezierRel(Point3D, Point3D, Point3D) Method

Marks a cubic Bezier curve in 3D from the current position, using the control-point coordinates, to the end-point.


Namespace: RAYLASE.SPICE3.ClientLib
Assembly: RAYLASE.SPICE3.ClientLib (in RAYLASE.SPICE3.ClientLib.dll) Version: 3.4.1
Syntax
C#
public void AppendCubicBezierRel(
	Point3D target,
	Point3D control0,
	Point3D control1
)

Parameters

target  Point3D
The relative coordinates of the target-point.
control0  Point3D
The relative coordinates of the first control point.
control1  Point3D
The relative coordinates of the second control point.
Remarks

Appends a MARK_BEZIER_CUBIC_3D_REL command to the list.

The geometry of Bezier curves, as implemented on the SP-ICE-3 Card, is discussed in 9.1.4 Bezier curves.

See Also