SKPathBuilder.RConicTo 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 |
|---|---|
| RConicTo(SKPoint, SKPoint, Single) |
Appends a relative weighted conic curve to the current contour. |
| RConicTo(Single, Single, Single, Single, Single) |
Appends a relative weighted conic curve to the current contour using offset coordinates. |
RConicTo(SKPoint, SKPoint, Single)
Appends a relative weighted conic curve to the current contour.
public void RConicTo(SkiaSharp.SKPoint point0, SkiaSharp.SKPoint point1, float w);
Parameters
- point0
- SKPoint
The offset from the current point to the control point.
- point1
- SKPoint
The offset from the current point to the end point.
- w
- Single
The weight of the conic.
Applies to
RConicTo(Single, Single, Single, Single, Single)
Appends a relative weighted conic curve to the current contour using offset coordinates.
public void RConicTo(float dx0, float dy0, float dx1, float dy1, float w);
Parameters
- dx0
- Single
The x-offset from the current point to the control point.
- dy0
- Single
The y-offset from the current point to the control point.
- dx1
- Single
The x-offset from the current point to the end point.
- dy1
- Single
The y-offset from the current point to the end point.
- w
- Single
The weight of the conic.