Version

AddBezier(Single,Single,Single,Single,Single,Single,Single,Single) Method

Adds a cubic Bézier curve to the current figure.
Syntax
'Declaration
 
Public Overloads Sub AddBezier( _
   ByVal x1 As Single, _
   ByVal y1 As Single, _
   ByVal x2 As Single, _
   ByVal y2 As Single, _
   ByVal x3 As Single, _
   ByVal y3 As Single, _
   ByVal x4 As Single, _
   ByVal y4 As Single _
) 
public void AddBezier( 
   float x1,
   float y1,
   float x2,
   float y2,
   float x3,
   float y3,
   float x4,
   float y4
)

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.
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also