Adds a point to the path.
Namespace:
Aurigma.GraphicsMill.AdvancedDrawing
Assembly:
Aurigma.GraphicsMill (in Aurigma.GraphicsMill.dll)
public void MoveTo( float x, float y )
Type: System.Single
The x-coordinate of the point.Type: System.Single
The y-coordinate of the point.var path = new Path(); path.MoveTo(10, 10); path.LineTo(70, 60);