Created
April 2, 2016 07:43
-
-
Save bravokeyl/1d92adddc39aee61b8ce064c52c9b830 to your computer and use it in GitHub Desktop.
eZGyXy
This file contains 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
<svg id="viz"> | |
<!-- <path d="M 100 100 L 300 100 L 200 300 z" /> --> | |
<path d="M0,-100A100,100,0,0,1,100,0L0,0Z" fill="red" transform="translate(200,200)" /> | |
<path d="M0,-100A100,50,0,0,1,100,50" fill="red" transform="translate(300,200)" /> | |
<path d="M80,200 a25,25 -30 0,1 50,-25Z" | |
fill="blue" stroke="red" stroke-width="5" transform="translate(1,200)" /> | |
</svg> |
This file contains 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
#viz { | |
width: 600px; | |
height: 600px; | |
margin: 0 auto; | |
} | |
path { | |
stroke: black; | |
stroke-width: 3px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment