Edit

SKPath.RLineTo Method

Definition

Overloads

Name Description
RLineTo(SKPoint)
Obsolete.

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

RLineTo(Single, Single)
Obsolete.

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

RLineTo(SKPoint)

Caution

Use SKPathBuilder instead.

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

[System.Obsolete("Use SKPathBuilder instead.")]
public void RLineTo(SkiaSharp.SKPoint point);

Parameters

point
SKPoint

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

Attributes

Remarks

If no MoveTo call has been made for this contour, the first point is automatically set to (0, 0).

Applies to

RLineTo(Single, Single)

Caution

Use SKPathBuilder instead.

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

[System.Obsolete("Use SKPathBuilder instead.")]
public void RLineTo(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 end of a line.

dy
Single

The amount to add to the y-coordinate of the last point on this contour, to specify the end of a line.

Attributes

Remarks

If no MoveTo call has been made for this contour, the first point is automatically set to (0, 0).

Applies to