Search
IGraphicsPath.AddBezier Method (Double, Double, Double, Double, Double, Double, Double, Double)
See Also
 





Adds a cubic Bézier curve to the current figure.

Namespace: MindFusion.Drawing
Assembly: MindFusion.Common

 Syntax

C#  Copy Code

void AddBezier (
    double x1,
    double y1,
    double x2,
    double y2,
    double x3,
    double y3,
    double x4,
    double y4
)

Visual Basic  Copy Code

Sub AddBezier( _
    x1 As Double, _
    y1 As Double, _
    x2 As Double, _
    y2 As Double, _
    x3 As Double, _
    y3 As Double, _
    x4 As Double, _
    y4 As Double _
)

 Parameters

x1

The x-coordinate of the starting point of the curve.

y1

The y-coordinate of the starting point of the curve.

x2

The x-coordinate of the first control point for the curve.

y2

The y-coordinate of the first control point for the curve.

x3

The x-coordinate of the second control point for the curve.

y3

The y-coordinate of the second control point for the curve.

x4

The x-coordinate of the endpoint of the curve.

y4

The y-coordinate of the endpoint of the curve.

 See Also