Android.Graphics.Path.CubicTo Method
Add a cubic bezier from the last point, approaching control points (x1,y1) and (x2,y2), and ending at (x3,y3).

Syntax

[Android.Runtime.Register("cubicTo", "(FFFFFF)V", "GetCubicTo_FFFFFFHandler")]
public virtual void CubicTo (float x1, float y1, float x2, float y2, float x3, float y3)

Parameters

x1
The x-coordinate of the 1st control point on a cubic curve
y1
The y-coordinate of the 1st control point on a cubic curve
x2
The x-coordinate of the 2nd control point on a cubic curve
y2
The y-coordinate of the 2nd control point on a cubic curve
x3
The x-coordinate of the end point on a cubic curve
y3
The y-coordinate of the end point on a cubic curve

Remarks

Add a cubic bezier from the last point, approaching control points (x1,y1) and (x2,y2), and ending at (x3,y3). 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