Path.CurveTo Method (Single, Single, Single, Single)

Adds a quadratic Bezier curve to the path.

Namespace: Aurigma.GraphicsMill.AdvancedDrawing
Assembly: Aurigma.GraphicsMill (in Aurigma.GraphicsMill.dll)

Syntax

C#
public void CurveTo(
	float ctrlX,
	float ctrlY,
	float x,
	float y
)

Parameters

ctrlX

Type: System.Single

The x-coordinate of the curve control point.
ctrlY

Type: System.Single

The y-coordinate of the curve control point.
x

Type: System.Single

The x-coordinate of the curve ending point.
y

Type: System.Single

The y-coordinate of the curve ending point.

Remarks

The starting point of the curve is the last point in the path.

See Also

Reference

Manual