version 11.3
SVG_PATH_ARC (parentSVGObject; xRadius; yRadius; x; y{; rotation})
| Parameter | Type | Description | |
| parentSVGObject | SVG_Ref | Reference of parent element | |
| xRadius | Number | Radius of ellipse on X axis | |
| yRadius | Number | Radius of ellipse on Y axis | |
| x | Number | Coordinate on X axis of destination point | |
| y | Number | Coordinate on Y axis of destination point | |
| rotation | Number | Value of rotation |
Description
The SVG_PATH_ARC command draws an elliptical arc, from the current point to the point (x, y), at the end of the path referenced by parentSVGObject. If parentSVGObject is not a path reference ('path' element), an error is generated.
The size and orientation of the ellipse are set by two radii (xRadius, yRadius) and a rotation value on the X axis that indicates the rotation of the ellipse as a whole with respect to the current coordinate system.
Example
See the examples for the SVG_New_path command.
See Also