Path.MoveTo Method (Single, Single)

Adds a point to the path.

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

Syntax

C#
public void MoveTo(
	float x,
	float y
)

Parameters

x

Type: System.Single

The x-coordinate of the point.
y

Type: System.Single

The y-coordinate of the point.

Examples

C#
var path = new Path();
path.MoveTo(10, 10);
path.LineTo(70, 60);

See Also

Reference

Manual