-
-
Save mbostock/4062919 to your computer and use it in GitHub Desktop.
Lines with Rounded Turns
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
license: gpl-3.0 |
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
<!DOCTYPE html> | |
<meta charset="utf-8"> | |
<style> | |
.line { | |
fill: none; | |
stroke-width: 1.5px; | |
} | |
.one { | |
stroke: steelblue; | |
} | |
.one-two { | |
stroke: steelblue; | |
stroke-dasharray: 2,2; | |
} | |
.two { | |
stroke: brown; | |
} | |
</style> | |
<svg width="960" height="500"> | |
<path class="line one" d="M100,100V190"></path> | |
<path class="line one-two" d="M100,190a10,10 0 0 0 10,10H190a10,10 0 0 1 10,10"></path> | |
<path class="line two" d="M200,210V300"></path> | |
</svg> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment