PathArcExtensions.SVGArcTo 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.
Adds an SVG arc segment to the path.
public:
[System::Runtime::CompilerServices::Extension]
static void SVGArcTo(Microsoft::Maui::Graphics::PathF ^ aTarget, float rx, float ry, float angle, bool largeArcFlag, bool sweepFlag, float x, float y, float lastPointX, float lastPointY);
public static void SVGArcTo(this Microsoft.Maui.Graphics.PathF aTarget, float rx, float ry, float angle, bool largeArcFlag, bool sweepFlag, float x, float y, float lastPointX, float lastPointY);
static member SVGArcTo : Microsoft.Maui.Graphics.PathF * single * single * single * bool * bool * single * single * single * single -> unit
<Extension()>
Public Sub SVGArcTo (aTarget As PathF, rx As Single, ry As Single, angle As Single, largeArcFlag As Boolean, sweepFlag As Boolean, x As Single, y As Single, lastPointX As Single, lastPointY As Single)
Parameters
- aTarget
- PathF
The path to which the arc segment is added.
- rx
- Single
The x-radius of the ellipse.
- ry
- Single
The y-radius of the ellipse.
- angle
- Single
The rotation angle of the ellipse in degrees.
- largeArcFlag
- Boolean
Determines whether the arc should be greater than or less than 180 degrees.
- sweepFlag
- Boolean
Determines whether the arc should be swept in a positive or negative angle direction.
- x
- Single
The x-coordinate of the end point of the arc.
- y
- Single
The y-coordinate of the end point of the arc.
- lastPointX
- Single
The x-coordinate of the start point of the arc (the current point in the path).
- lastPointY
- Single
The y-coordinate of the start point of the arc (the current point in the path).