Android.Graphics.Path.RQuadTo Method
Same as quadTo, but the coordinates are considered relative to the last point on this contour.

Syntax

[Android.Runtime.Register("rQuadTo", "(FFFF)V", "GetRQuadTo_FFFFHandler")]
public virtual void RQuadTo (float dx1, float dy1, float dx2, float dy2)

Parameters

dx1
The amount to add to the x-coordinate of the last point on this contour, for the control point of a quadratic curve
dy1
The amount to add to the y-coordinate of the last point on this contour, for the control point of a quadratic curve
dx2
The amount to add to the x-coordinate of the last point on this contour, for the end point of a quadratic curve
dy2
The amount to add to the y-coordinate of the last point on this contour, for the end point of a quadratic curve

Remarks

Same as quadTo, but the coordinates are considered relative to the last point on this contour. If there is no previous point, then a moveTo(0,0) is inserted automatically.

[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