Fills the interior of a Bezier curve defined by four PointF structures.
Namespace:
Aurigma.GraphicsMill.AdvancedDrawing
Assembly:
Aurigma.GraphicsMill (in Aurigma.GraphicsMill.dll)
public void FillBezier( Brush brush, PointF point, PointF controlPoint1, PointF controlPoint2, PointF endPoint )
Type: Aurigma.GraphicsMill.AdvancedDrawing.Brush
A Brush that determines the characteristics of the fill.Type: System.Drawing.PointF
A PointF structure that represents the starting point of the curve.Type: System.Drawing.PointF
A PointF structure that represents the first control point for the curve.Type: System.Drawing.PointF
A PointF structure that represents the second control point for the curve.Type: System.Drawing.PointF
A PointF structure that represents the ending point of the curve.A Bezier curve 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 curve bends.