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

◆ add_bezier() [2/4]

void xtd::drawing::drawing_2d::graphics_path::add_bezier ( const xtd::drawing::point_f pt1,
const xtd::drawing::point_f pt2,
const xtd::drawing::point_f pt3,
const xtd::drawing::point_f pt4 
)

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

Parameters
pt1A xtd::drawing::point_f that represents the starting point of the curve.
pt2A xtd::drawing::point_f that represents the first control point for the curve.
pt3A xtd::drawing::point_f that represents the second control point for the curve.
pt4A xtd::drawing::point_f that represents 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.