Function: svg--elliptical-arc-coordinates
svg--elliptical-arc-coordinates is a byte-compiled function defined in
svg.el.gz.
Signature
(svg--elliptical-arc-coordinates RX RY X Y &rest ARGS)
Source Code
;; Defined in /usr/src/emacs/lisp/svg.el.gz
(defun svg--elliptical-arc-coordinates (rx ry x y &rest args)
(list
rx ry
(or (plist-get args :x-axis-rotation) 0)
(if (plist-get args :large-arc) 1 0)
(if (plist-get args :sweep) 1 0)
x y))