Click or drag to resize
CanvasPathBuilderAddQuadraticBezier Method
Adds a quadratic bezier to the path. The bezier starts where the path left off, and has the specified control point and end point.

Namespace:  Microsoft.Graphics.Canvas.Geometry
Assembly:  Microsoft.Graphics.Canvas (in Microsoft.Graphics.Canvas.dll) Version: 0.0.0.0
Syntax
C#
public void AddQuadraticBezier(
	Vector2 controlPoint,
	Vector2 endPoint
)

Parameters

controlPoint
Type: System.NumericsVector2
endPoint
Type: System.NumericsVector2
Remarks
To add a bezier with two control points, see AddCubicBezier(Vector2, Vector2, Vector2)
See Also