(defn circle [x y r] | |
(-> | |
(.append svg-container "circle") | |
(.attr "cx" x) | |
(.attr "cy" y) | |
(.attr "r" r))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
(defn circle [x y r] | |
(-> | |
(.append svg-container "circle") | |
(.attr "cx" x) | |
(.attr "cy" y) | |
(.attr "r" r))) |