SKPath.RMoveTo 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
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
SkiaSharp