Path.RQuadTo(Single, Single, Single, Single) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Same as quadTo, but the coordinates are considered relative to the last point on this contour.
[Android.Runtime.Register("rQuadTo", "(FFFF)V", "GetRQuadTo_FFFFHandler")]
public virtual void RQuadTo (float dx1, float dy1, float dx2, float dy2);
[<Android.Runtime.Register("rQuadTo", "(FFFF)V", "GetRQuadTo_FFFFHandler")>]
abstract member RQuadTo : single * single * single * single -> unit
override this.RQuadTo : single * single * single * single -> unit
Parameters
- dx1
- Single
The amount to add to the x-coordinate of the last point on this contour, for the control point of a quadratic curve
- dy1
- Single
The amount to add to the y-coordinate of the last point on this contour, for the control point of a quadratic curve
- dx2
- Single
The amount to add to the x-coordinate of the last point on this contour, for the end point of a quadratic curve
- dy2
- Single
The amount to add to the y-coordinate of the last point on this contour, for the end point of a quadratic curve
- Attributes
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.
Java documentation for android.graphics.Path.rQuadTo(float, float, float, float)
.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.