Path |
Draw a bezier curve.
Append a cubic Bézier curve to the current path. The curve extends from the current point to the target position, using controlPoint1 and controlPoint2 as the Bézier control points.
The current position is changed to the target position.
public void BezierTo( Point controlPoint1, Point controlPoint2, Point target )
Exception | Condition |
---|---|
InvalidOperationException | if the object has already been closed |
InvalidOperationException | if the path object has already been closed |