Path.RCubicTo(Single, Single, 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 cubicTo, but the coordinates are considered relative to the current point on this contour.
[Android.Runtime.Register("rCubicTo", "(FFFFFF)V", "GetRCubicTo_FFFFFFHandler")]
public virtual void RCubicTo (float x1, float y1, float x2, float y2, float x3, float y3);
[<Android.Runtime.Register("rCubicTo", "(FFFFFF)V", "GetRCubicTo_FFFFFFHandler")>]
abstract member RCubicTo : single * single * single * single * single * single -> unit
override this.RCubicTo : single * single * single * single * single * single -> unit
Parameters
- x1
- Single
- y1
- Single
- x2
- Single
- y2
- Single
- x3
- Single
- y3
- Single
- Attributes
Remarks
Same as cubicTo, but the coordinates are considered relative to the current point on this contour. If there is no previous point, then a moveTo(0,0) is inserted automatically.
Java documentation for android.graphics.Path.rCubicTo(float, float, 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.