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

Adds a cubic Bezier curve to the path.

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

Syntax

C#
public void CurveTo(
	float ctrlX1,
	float ctrlY1,
	float ctrlX2,
	float ctrlY2,
	float x,
	float y
)

Parameters

ctrlX1

Type: System.Single

The x-coordinate of the curve first control point.
ctrlY1

Type: System.Single

The y-coordinate of the curve first control point.
ctrlX2

Type: System.Single

The x-coordinate of the curve second control point.
ctrlY2

Type: System.Single

The y-coordinate of the curve second 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.

See Also

Reference

Manual