Click or drag to resize

CommandListAppendQuadraticBezierRel(Double, Double, Double, Double) Method

Marks a quadratic 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 AppendQuadraticBezierRel(
	double targetX,
	double targetY,
	double controlX,
	double controlY
)

Parameters

targetX  Double
The relative x-coordinate of the target-point.
targetY  Double
The relative y-coordinate of the target-point.
controlX  Double
The relative x-coordinates of the control point.
controlY  Double
The relative y-coordinates of the control point.
Remarks

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