In This Topic
Draw a cubic Bezier curve along the specified points.
Syntax
'Declaration
Sub CubicBezierTo( _
ByVal As Point, _
ByVal As Point, _
ByVal As Point _
)
'Usage
Dim instance As IGeometry
Dim control1 As Point
Dim control2 As Point
Dim end As Point
instance.CubicBezierTo(control1, control2, end)
void CubicBezierTo(
Point ,
Point ,
Point
)
Parameters
- control1
- The first control point of the cubic Bezier curve.
- control2
- The second control point of the cubic Bezier curve.
- end
- The end point of the cubic Bezier curve.
See Also