Android.Graphics.Path.QuadTo Method
Add a quadratic bezier from the last point, approaching control point (x1,y1), and ending at (x2,y2).

Syntax

[Android.Runtime.Register("quadTo", "(FFFF)V", "GetQuadTo_FFFFHandler")]
public virtual void QuadTo (float x1, float y1, float x2, float y2)

Parameters

x1
The x-coordinate of the control point on a quadratic curve
y1
The y-coordinate of the control point on a quadratic curve
x2
The x-coordinate of the end point on a quadratic curve
y2
The y-coordinate of the end point on a quadratic curve

Remarks

Add a quadratic bezier from the last point, approaching control point (x1,y1), and ending at (x2,y2). If no moveTo() call has been made for this contour, the first point is automatically set to (0,0).

[Android Documentation]

Requirements

Namespace: Android.Graphics
Assembly: Mono.Android (in Mono.Android.dll)
Assembly Versions: 0.0.0.0
Since: Added in API level 1