Path.RMoveTo(Single, Single) Method

Definition

Set the beginning of the next contour relative to the last point on the previous contour.

[Android.Runtime.Register("rMoveTo", "(FF)V", "GetRMoveTo_FFHandler")]
public virtual void RMoveTo (float dx, float dy);
[<Android.Runtime.Register("rMoveTo", "(FF)V", "GetRMoveTo_FFHandler")>]
abstract member RMoveTo : single * single -> unit
override this.RMoveTo : single * single -> unit

Parameters

dx
Single

The amount to add to the x-coordinate of the end of the previous contour, to specify the start of a new contour

dy
Single

The amount to add to the y-coordinate of the end of the previous contour, to specify the start of a new contour

Attributes

Remarks

Set the beginning of the next contour relative to the last point on the previous contour. If there is no previous contour, this is treated the same as moveTo().

Java documentation for android.graphics.Path.rMoveTo(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.

Applies to