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
| Name | Description |
|---|---|
| RMoveTo(SKPoint) |
Obsolete.
Same as MoveTo(SKPoint) but the coordinates are considered relative to the last point on this contour. |
| RMoveTo(Single, Single) |
Obsolete.
Same as MoveTo(Single, Single) but the coordinates are considered relative to the last point on this contour. |
RMoveTo(SKPoint)
Caution
Use SKPathBuilder instead.
Same as MoveTo(SKPoint) but the coordinates are considered relative to the last point on this contour.
[System.Obsolete("Use SKPathBuilder instead.")]
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.
- Attributes
Applies to
RMoveTo(Single, Single)
Caution
Use SKPathBuilder instead.
Same as MoveTo(Single, Single) but the coordinates are considered relative to the last point on this contour.
[System.Obsolete("Use SKPathBuilder instead.")]
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.
- Attributes