Function: svg-circle
svg-circle is a byte-compiled function defined in svg.el.gz.
Signature
(svg-circle SVG X Y RADIUS &rest ARGS)
Documentation
Create a circle of RADIUS on SVG.
X/Y denote the center of the circle.
Source Code
;; Defined in /usr/src/emacs/lisp/svg.el.gz
(defun svg-circle (svg x y radius &rest args)
"Create a circle of RADIUS on SVG.
X/Y denote the center of the circle."
(svg--append
svg
(dom-node 'circle
`((cx . ,x)
(cy . ,y)
(r . ,radius)
,@(svg--arguments svg args)))))