IPath.BezierCurveTo

IPath.BezierCurveTo method

Adds a cubic Bézier curve segment to the path.

public void BezierCurveTo(float controlPoint1X, float controlPoint1Y, float controlPoint2X, 
    float controlPoint2Y, float endPointX, float endPointY)
ParameterTypeDescription
controlPoint1XSingleThe x-coordinate of the first control point.
controlPoint1YSingleThe y-coordinate of the first control point.
controlPoint2XSingleThe x-coordinate of the second control point.
controlPoint2YSingleThe y-coordinate of the second control point.
endPointXSingleThe x-coordinate of the destination point.
endPointYSingleThe y-coordinate of the destination point.

See Also