Edit

SKPathBuilder.RMoveTo Method

Definition

Overloads

Name Description
RMoveTo(SKPoint)

Begins a new contour at a point offset from the current point.

RMoveTo(Single, Single)

Begins a new contour at a position offset from the current point by the specified coordinates.

RMoveTo(SKPoint)

Begins a new contour at a point offset from the current point.

public void RMoveTo(SkiaSharp.SKPoint point);

Parameters

point
SKPoint

The offset from the current point to the starting point of the new contour.

Applies to

RMoveTo(Single, Single)

Begins a new contour at a position offset from the current point by the specified coordinates.

public void RMoveTo(float dx, float dy);

Parameters

dx
Single

The x-offset from the current point.

dy
Single

The y-offset from the current point.

Applies to