Draws a Bezier spline defined by four Point structures.
Namespace:
Aurigma.GraphicsMill.Drawing
Assembly:
Aurigma.GraphicsMill (in Aurigma.GraphicsMill.dll)
public void DrawBezier( Pen pen, Point pt1, Point pt2, Point pt3, Point pt4 )
Type: Aurigma.GraphicsMill.Drawing.Pen
A Pen that determines the color, width, and style of the curve.Type: System.Drawing.Point
A Point structure that represents the starting point of the curve.Type: System.Drawing.Point
A Point structure that represents the first control point for the curve.Type: System.Drawing.Point
A Point structure that represents the second control point for the curve.Type: System.Drawing.Point
A Point structure that represents the ending point of the curve.A Bezier spline is defined with four points: first and last point specify beginning and end of the curve, second and third points specify so-called control points. The control points act as magnets, pulling the curve in certain directions to influence the way the Bezier spline bends.