xtd 0.2.0
Loading...
Searching...
No Matches

◆ add_bezier() [3/4]

void xtd::drawing::drawing_2d::graphics_path::add_bezier ( int32  x1,
int32  y1,
int32  x2,
int32  y2,
int32  x3,
int32  y3,
int32  x4,
int32  y4 
)

Adds a cubic Bézier curve to the current figure.

Parameters
x1The x-coordinate of the starting point of the curve.
y1The y-coordinate of the starting point of the curve.
x2The x-coordinate of the first control point for the curve.
y2The y-coordinate of the first control point for the curve.
x3The x-coordinate of the second control point for the curve.
y3The y-coordinate of the second control point for the curve.
x4The x-coordinate of the endpoint of the curve.
y4The y-coordinate of the endpoint of the curve.
Remarks
The cubic curve is constructed from the first point to the fourth point by using the second and third points as control points.
If there is a previous line or curve segment in the figure, a line is added to connect the endpoint of the previous segment to the starting point of the cubic curve.