Click or drag to resize

CommandListAppendCubicBezierAbs(Double, Double, Double, Double, Double, Double) Method

Marks a cubic Bezier curve in 2D 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 AppendCubicBezierAbs(
	double targetX,
	double targetY,
	double control0X,
	double control0Y,
	double control1X,
	double control1Y
)

Parameters

targetX  Double
The absolute x-coordinates of the target-point.
targetY  Double
The absolute y-coordinates of the target-point.
control0X  Double
The absolute x-coordinates of the first control point.
control0Y  Double
The absolute y-coordinates of the first control point.
control1X  Double
The absolute x-coordinates of the second control point.
control1Y  Double
The absolute y-coordinates of the second control point.
Remarks

Appends a MARK_BEZIER_CUBIC_ABS 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