QuadraticBezierTo

QuadraticBezierTo(PointF, PointF)

Adds quadratic Bezier curve at the end the path

public void QuadraticBezierTo(PointF point1, PointF point2)
ParameterTypeDescription
point1PointFDirection point
point2PointFEnd point

See Also


QuadraticBezierTo(float, float, float, float)

Adds quadratic Bezier curve at the end the path

public void QuadraticBezierTo(float x1, float y1, float x2, float y2)
ParameterTypeDescription
x1SingleX coordinate of direction point
y1SingleY coordinate of direction point
x2SingleX coordinate of end point
y2SingleY coordinate of end point

See Also


QuadraticBezierTo(PointF, PointF, uint)

Adds quadratic Bezier curve to the specified place of the path

public void QuadraticBezierTo(PointF point1, PointF point2, uint index)
ParameterTypeDescription
point1PointFDirection point
point2PointFEnd point
indexUInt32Index of segment in PathData

Exceptions

exceptioncondition
ArgumentOutOfRangeExceptionSegment index is out of PathData range

See Also


QuadraticBezierTo(float, float, float, float, uint)

Adds quadratic Bezier curve to the specified place of the path

public void QuadraticBezierTo(float x1, float y1, float x2, float y2, uint index)
ParameterTypeDescription
x1SingleX coordinate of direction point
y1SingleY coordinate of direction point
x2SingleX coordinate of end point
y2SingleY coordinate of end point
indexUInt32Index of segment in PathData

Exceptions

exceptioncondition
ArgumentOutOfRangeExceptionSegment index is out of PathData range

See Also