Click or drag to resize

IGraphicsPathAddBezier Method

Adds a bezier curve to the path with two control points

Namespace:  Eto.Drawing
Assembly:  Eto (in Eto.dll) Version: 2.5.3-dev
Syntax
void AddBezier(
	PointF start,
	PointF control1,
	PointF control2,
	PointF end
)

Parameters

start
Type: Eto.DrawingPointF
Starting point of the bezier curve
control1
Type: Eto.DrawingPointF
First control point of the curve
control2
Type: Eto.DrawingPointF
Second control point of the curve
end
Type: Eto.DrawingPointF
Ending point of the bezier curve
Remarks
If the current figure is not closed, it will connect with the start of the bezier curve. The current position will be moved to the end point.
See Also