Created
February 10, 2016 17:15
-
-
Save aleksandar-b/ab3a8f92adfb9529164a to your computer and use it in GitHub Desktop.
SVG method for circle
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function getCircleTotalLength (element) { | |
var r = document.querySelector(element).getAttribute("r"); | |
return 2 * Math.PI * r; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment