CubicBezierTo

CubicBezierTo(PointF, PointF, PointF)

Adds cubic Bezier curve at the end the path

public void CubicBezierTo(PointF point1, PointF point2, PointF point3)
ParameterTypeDescription
point1PointFFirst direction point
point2PointFSecond direction point
point3PointFEnd point

See Also


CubicBezierTo(float, float, float, float, float, float)

Adds cubic Bezier curve at the end the path

public void CubicBezierTo(float x1, float y1, float x2, float y2, float x3, float y3)
ParameterTypeDescription
x1SingleX coordinate of first direction point
y1SingleY coordinate of first direction point
x2SingleX coordinate of second direction point
y2SingleY coordinate of second direction point
x3SingleX coordinate of end point
y3SingleY coordinate of end point

See Also


CubicBezierTo(PointF, PointF, PointF, uint)

Adds cubic Bezier curve to the specified place of the path

public void CubicBezierTo(PointF point1, PointF point2, PointF point3, uint index)
ParameterTypeDescription
point1PointFFirst direction point
point2PointFSecond direction point
point3PointFEnd point
indexUInt32Index of segment in PathData

Exceptions

exceptioncondition
ArgumentOutOfRangeExceptionSegment index is out of PathData range

See Also


CubicBezierTo(float, float, float, float, float, float, uint)

Adds cubic Bezier curve to the specified place of the path

public void CubicBezierTo(float x1, float y1, float x2, float y2, float x3, float y3, uint index)
ParameterTypeDescription
x1SingleX coordinate of first direction point
y1SingleY coordinate of first direction point
x2SingleX coordinate of second direction point
y2SingleY coordinate of second direction point
x3SingleX coordinate of end point
y3SingleY coordinate of end point
indexUInt32Index of segment in PathData

Exceptions

exceptioncondition
ArgumentOutOfRangeExceptionSegment index is out of PathData range

See Also