Draws a cubic Bezier spline.
Namespace:
Aurigma.GraphicsMill.Drawing
Assembly:
Aurigma.GraphicsMill (in Aurigma.GraphicsMill.dll)
Public Sub DrawBezier ( _ pen As Pen, _ x1 As Integer, _ y1 As Integer, _ x2 As Integer, _ y2 As Integer, _ x3 As Integer, _ y3 As Integer, _ x4 As Integer, _ y4 As Integer _ )
public void DrawBezier( Pen pen, int x1, int y1, int x2, int y2, int x3, int y3, int x4, int y4 )
Type: Aurigma.GraphicsMill.Drawing.Pen
Pen object which is used to draw an spline.Type: System.Int32
X-coordinate of the start spline point.Type: System.Int32
Y-coordinate of the start spline point.Type: System.Int32
X-coordinate of the first control point.Type: System.Int32
Y-coordinate of the first control point.Type: System.Int32
X-coordinate of the second control point.Type: System.Int32
Y-coordinate of the second control point.Type: System.Int32
X-coordinate of the end spline point.Type: System.Int32
Y-coordinate of the end spline point.All the coordinates are measured in units specified with Unit property.