Edit

SKPathBuilder.RLineTo Method

Definition

Overloads

Name Description
RLineTo(SKPoint)

Appends a relative straight line segment from the current point using the specified offset.

RLineTo(Single, Single)

Appends a relative straight line segment from the current point using the specified offset coordinates.

RLineTo(SKPoint)

Appends a relative straight line segment from the current point using the specified offset.

public void RLineTo(SkiaSharp.SKPoint point);

Parameters

point
SKPoint

The offset from the current point to the end point of the line segment.

Applies to

RLineTo(Single, Single)

Appends a relative straight line segment from the current point using the specified offset coordinates.

public void RLineTo(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