Click or drag to resize

GraphicsPathExtensionsAddCurve Method (IGraphicsPath, PointF)

Adds a curve that intersects with the specified points to the path

Namespace:  Eto.Drawing
Assembly:  Eto (in Eto.dll) Version: 2.5.3-dev
Syntax
public static void AddCurve(
	this IGraphicsPath path,
	params PointF[] points
)

Parameters

path
Type: Eto.DrawingIGraphicsPath
Path to add the curve to
points
Type: Eto.DrawingPointF
Points that define where the curve intersects

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IGraphicsPath. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also