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