GoDigram for .NET Framework and .NET Core
Northwoods.Go.Pdf Namespace / GoPdfGenerator Class / DrawBezier Method / DrawBezier(Pen,Brush,Single,Single,Single,Single,Single,Single,Single,Single) Method
The pen with which to draw the curve
The brush with which to draw the curve
The x coordinate of the start point
The y coordinate of the start point
The x coordinate of the first control point point
The y coordinate of the first control point point
The x coordinate of the second control point
The y coordinate of the second control point
The x coordinate of the end point
The y coordinate of the end point
In This Topic
    DrawBezier(Pen,Brush,Single,Single,Single,Single,Single,Single,Single,Single) Method
    In This Topic
    Draws a cubic Bezier curve.
    Syntax
    public void DrawBezier( 
       Pen pen,
       Brush brush,
       float sx,
       float sy,
       float cx1,
       float cy1,
       float cx2,
       float cy2,
       float ex,
       float ey
    )

    Parameters

    pen
    The pen with which to draw the curve
    brush
    The brush with which to draw the curve
    sx
    The x coordinate of the start point
    sy
    The y coordinate of the start point
    cx1
    The x coordinate of the first control point point
    cy1
    The y coordinate of the first control point point
    cx2
    The x coordinate of the second control point
    cy2
    The y coordinate of the second control point
    ex
    The x coordinate of the end point
    ey
    The y coordinate of the end point
    See Also