SKPath.RMoveTo Method

Definition

Overloads

RMoveTo(SKPoint)

Same as MoveTo(SKPoint) but the coordinates are considered relative to the last point on this contour.

RMoveTo(Single, Single)

Same as MoveTo(Single, Single) but the coordinates are considered relative to the last point on this contour.

RMoveTo(SKPoint)

Same as MoveTo(SKPoint) but the coordinates are considered relative to the last point on this contour.

public void RMoveTo (SkiaSharp.SKPoint point);

Parameters

point
SKPoint

The amount to add to the coordinates of the last point on this contour, to specify the start of a new contour.

Applies to

RMoveTo(Single, Single)

Same as MoveTo(Single, Single) but the coordinates are considered relative to the last point on this contour.

public void RMoveTo (float dx, float dy);

Parameters

dx
Single

The amount to add to the x-coordinate of the last point on this contour, to specify the start of a new contour.

dy
Single

The amount to add to the x-coordinate of the last point on this contour, to specify the start of a new contour.

Applies to