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





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

Namespace: MindFusion.Drawing
Assembly: MindFusion.Common

 Syntax

C#  Copy Code

void AddBezier (
    Point p1,
    Point p2,
    Point p3,
    Point p4
)

Visual Basic  Copy Code

Sub AddBezier( _
    p1 As Point, _
    p2 As Point, _
    p3 As Point, _
    p4 As Point _
)

 Parameters

p1

A Point that represents the starting point of the curve.

p2

A Point that represents the first control point for the curve.

p3

A Point that represents the second control point for the curve.

p4

A Point that represents the endpoint of the curve.

 See Also