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