Click or drag to resize

GraphicsPath.AddBezier 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
public void AddBezier(
	PointF start,
	PointF control1,
	PointF control2,
	PointF end
)

Parameters

start
Type: Eto.Drawing.PointF
Starting point of the bezier curve
control1
Type: Eto.Drawing.PointF
First control point of the curve
control2
Type: Eto.Drawing.PointF
Second control point of the curve
end
Type: Eto.Drawing.PointF
Ending point of the bezier curve

Implements

IGraphicsPath.AddBezier(PointF, PointF, PointF, PointF)
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