SVGPathElementCreateSVGPathSegArcRel Method |
Returns a stand-alone, parentless SVGPathSegArcRel object.
Namespace:
Aspose.Svg
Assembly:
Aspose.SVG (in Aspose.SVG.dll) Version: 22.4
Syntaxpublic SVGPathSegArcRel CreateSVGPathSegArcRel(
float x,
float y,
float r1,
float r2,
float angle,
bool largeArcFlag,
bool sweepFlag
)
Public Function CreateSVGPathSegArcRel (
x As Single,
y As Single,
r1 As Single,
r2 As Single,
angle As Single,
largeArcFlag As Boolean,
sweepFlag As Boolean
) As SVGPathSegArcRel
public:
SVGPathSegArcRel^ CreateSVGPathSegArcRel(
float x,
float y,
float r1,
float r2,
float angle,
bool largeArcFlag,
bool sweepFlag
)
member CreateSVGPathSegArcRel :
x : float32 *
y : float32 *
r1 : float32 *
r2 : float32 *
angle : float32 *
largeArcFlag : bool *
sweepFlag : bool -> SVGPathSegArcRel
Parameters
- x
- Type: SystemSingle
The relative X coordinate for the end point of this path segment. - y
- Type: SystemSingle
The relative Y coordinate for the end point of this path segment. - r1
- Type: SystemSingle
The x-axis radius for the ellipse (i.e., r1). - r2
- Type: SystemSingle
The y-axis radius for the ellipse (i.e., r2). - angle
- Type: SystemSingle
The rotation angle in degrees for the ellipse's x-axis relative to the x-axis of the user coordinate system. - largeArcFlag
- Type: SystemBoolean
The value of the large-arc-flag parameter. - sweepFlag
- Type: SystemBoolean
The value of the large-arc-flag parameter.
Return Value
Type:
SVGPathSegArcRelA stand-alone, parentless SVGPathSegArcRel object.
See Also