SKPath.RLineTo Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
RLineTo(SKPoint) |
Same as LineTo(SKPoint) but the coordinates are considered relative to the last point on this contour. |
RLineTo(Single, Single) |
Same as LineTo(Single, Single) but the coordinates are considered relative to the last point on this contour. |
RLineTo(SKPoint)
Same as LineTo(SKPoint) but the coordinates are considered relative to the last point on this contour.
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.
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)
Same as LineTo(Single, Single) but the coordinates are considered relative to the last point on this contour.
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.
Remarks
If no MoveTo call has been made for this contour, the first point is automatically set to (0, 0).