SVG "path" element animation with D3.js. Based on Mike's example: Stroke Dash Interpolation.
Last active
December 31, 2015 01:09
-
-
Save KoGor/7912246 to your computer and use it in GitHub Desktop.
SVG <path> element animation with D3.js
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> | |
<html lang="en"> | |
<meta charset="utf-8"> | |
<head> | |
<title>SVG path animation</title> | |
<link href="style.css" rel="stylesheet"> | |
<script src="http://d3js.org/d3.v3.min.js"></script> | |
<script src="http://d3js.org/queue.v1.min.js"></script> | |
</head> | |
<body> | |
<!-- start --> | |
<div id="pathAnimation"> | |
<script src="pathAnimation.js"></script> | |
</div> | |
<!-- end --> | |
</body> | |
</html> |
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
queue() | |
.defer(d3.xml, "pathSamples.svg", "image/svg+xml") | |
.await(ready); | |
function ready(error, xml) { | |
//Adding our svg file to HTML document | |
var importedNode = document.importNode(xml.documentElement, true); | |
d3.select("#pathAnimation").node().appendChild(importedNode); | |
var svg = d3.select("svg"), | |
svgWidth = svg.attr("width"), | |
svgHeight = svg.attr("height"); | |
var paths = svg.selectAll("path") | |
.call(transition); | |
function transition(path) { | |
path.transition() | |
.duration(7500) | |
.attrTween("stroke-dasharray", tweenDash) | |
.each("end", function() { d3.select(this).call(transition); }); // infinite loop | |
} | |
function tweenDash() { | |
var l = this.getTotalLength(), | |
i = d3.interpolateString("0," + l, l + "," + l); // interpolation of stroke-dasharray attr | |
return function(t) { | |
return i(t); | |
}; | |
} | |
} |
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 | |
xmlns="http://www.w3.org/2000/svg" | |
width="960" | |
height="500" | |
viewBox="0 0 550 165" | |
id="svg" | |
version="1.1"> | |
<path | |
d="m 440.12192,31.267435 c -0.13542,2e-5 -0.26823,0.0052 -0.40625,0.03125 -0.13802,0.02606 -0.26563,0.07033 -0.375,0.125 -0.10938,0.05471 -0.20835,0.12763 -0.28125,0.21875 -0.0729,0.09117 -0.0888,0.187521 -0.0937,0.3125 -0.0365,0.583354 -0.0833,1.276061 -0.125,2.03125 -0.0417,0.755226 -0.0781,1.531267 -0.125,2.375 -0.0469,0.843766 -0.10935,1.731785 -0.15625,2.625 -0.0469,0.893242 -0.0833,1.770845 -0.125,2.625 -0.0417,0.854177 -0.0859,1.666676 -0.125,2.4375 -0.039,0.770841 -0.0677,1.45834 -0.0937,2.0625 -0.0729,1.411463 -0.17709,2.664066 -0.3125,3.78125 -0.13542,1.117189 -0.33855,2.078126 -0.625,2.875 l 0.40625,0.09375 c 0.16145,-0.177084 0.3125,-0.395833 0.5,-0.6875 0.1875,-0.291666 0.38021,-0.666666 0.5625,-1.125 0.21875,0.322918 0.47395,0.575521 0.75,0.8125 0.27604,0.236979 0.56511,0.442708 0.875,0.59375 0.3099,0.151041 0.64322,0.27083 0.96875,0.34375 0.32552,0.07291 0.64582,0.09375 0.96875,0.09375 0.48436,0 0.95832,-0.06511 1.4375,-0.21875 0.47916,-0.153646 0.9427,-0.390624 1.375,-0.6875 0.43228,-0.296874 0.8177,-0.661457 1.1875,-1.09375 0.36978,-0.432289 0.6979,-0.91406 0.96875,-1.46875 0.27082,-0.554684 0.47134,-1.169267 0.625,-1.84375 0.15367,-0.674474 0.24998,-1.411452 0.25,-2.1875 0,-0.281242 -0.0287,-0.583325 -0.0625,-0.90625 -0.0339,-0.322908 -0.1042,-0.622387 -0.1875,-0.9375 -0.0833,-0.315095 -0.1771,-0.617178 -0.3125,-0.90625 -0.13543,-0.289052 -0.29689,-0.559885 -0.5,-0.78125 -0.20314,-0.221343 -0.44272,-0.398426 -0.71875,-0.53125 -0.27606,-0.132799 -0.60938,-0.187488 -0.96875,-0.1875 -0.42709,1.2e-5 -0.86199,0.140636 -1.34375,0.40625 -0.48178,0.265636 -0.97918,0.635427 -1.46875,1.15625 -0.48959,0.520843 -0.96355,1.166676 -1.4375,1.9375 -0.47397,0.770841 -0.93229,1.67709 -1.34375,2.6875 l -0.0937,0 c 0.0313,-0.786453 0.0729,-1.611972 0.125,-2.46875 0.0521,-0.856762 0.1172,-1.731761 0.1875,-2.625 0.0703,-0.893218 0.1641,-1.802071 0.25,-2.71875 0.0859,-0.916652 0.1589,-1.843735 0.25,-2.75 0.0911,-0.906233 0.18225,-1.802066 0.28125,-2.6875 0.099,-0.885397 0.2135,-1.729146 0.3125,-2.5625 -0.34376,-0.16665 -0.68229,-0.249978 -1,-0.25 z m 33.625,0 c -0.14583,2e-5 -0.27084,0.0052 -0.40625,0.03125 -0.13542,0.02606 -0.26824,0.07033 -0.375,0.125 -0.10678,0.05471 -0.1823,0.12763 -0.25,0.21875 -0.0677,0.09117 -0.12,0.187521 -0.125,0.3125 -0.0417,0.81252 -0.0781,1.671894 -0.125,2.5625 -0.0469,0.890642 -0.0755,1.789078 -0.125,2.71875 -0.0495,0.929701 -0.10415,1.890639 -0.15625,2.84375 -0.0521,0.953137 -0.10675,1.90626 -0.15625,2.84375 -0.0494,0.937508 -0.10675,1.846361 -0.15625,2.75 -0.0495,0.903651 -0.0807,1.760422 -0.125,2.59375 -0.0443,0.833337 -0.0859,1.632815 -0.125,2.375 -0.0391,0.742188 -0.0938,1.416667 -0.125,2.03125 l 0.125,0 1.65625,-0.1875 c 0.0417,-0.770832 0.15104,-1.541665 0.3125,-2.3125 0.16146,-0.77083 0.3802,-1.513017 0.625,-2.21875 0.24478,-0.705724 0.5052,-1.361974 0.8125,-1.96875 0.30729,-0.606764 0.63802,-1.14843 0.96875,-1.59375 0.33072,-0.445304 0.66406,-0.776032 1,-1.03125 0.33593,-0.255199 0.64062,-0.374991 0.9375,-0.375 0.3802,9e-6 0.68228,0.117196 0.90625,0.40625 0.22395,0.289071 0.34374,0.734383 0.34375,1.3125 0,0.239591 -0.0287,0.544278 -0.0625,0.9375 -0.0339,0.393235 -0.0546,0.838547 -0.0937,1.3125 -0.0391,0.473963 -0.0912,0.984379 -0.125,1.5 -0.0339,0.515628 -0.0313,1.015628 -0.0312,1.5 -1e-4,0.401044 0.008,0.776043 0.0312,1.125 0.0234,0.348959 0.0756,0.645834 0.15625,0.90625 0.0807,0.260417 0.18229,0.473958 0.34375,0.625 0.16145,0.151042 0.40624,0.21875 0.6875,0.21875 0.23957,0 0.49999,-0.04427 0.8125,-0.125 0.31249,-0.08073 0.62238,-0.182291 0.9375,-0.3125 0.31509,-0.130208 0.61978,-0.28125 0.90625,-0.4375 0.28645,-0.156249 0.53124,-0.317707 0.71875,-0.46875 l -0.15625,-0.40625 c -0.29689,0.135418 -0.58335,0.23698 -0.875,0.3125 -0.29168,0.07552 -0.57293,0.125001 -0.84375,0.125 -0.18751,0 -0.33856,-0.03906 -0.46875,-0.09375 -0.13022,-0.05469 -0.2344,-0.132811 -0.3125,-0.28125 -0.0782,-0.148436 -0.1537,-0.36979 -0.1875,-0.625 -0.0339,-0.255206 -0.0313,-0.562498 -0.0313,-0.96875 -10e-5,-0.229164 0.0131,-0.526038 0.0312,-0.84375 0.0182,-0.317704 0.0364,-0.645829 0.0625,-1 0.026,-0.354162 0.0598,-0.697911 0.0937,-1.0625 0.0338,-0.364577 0.0365,-0.731764 0.0625,-1.0625 0.026,-0.330722 0.0756,-0.638014 0.0937,-0.90625 0.0183,-0.268222 -1e-5,-0.468742 0,-0.625 -1e-5,-0.515616 -0.0625,-0.942699 -0.1875,-1.3125 -0.12501,-0.369782 -0.28908,-0.671865 -0.5,-0.90625 -0.21095,-0.234364 -0.44793,-0.41926 -0.71875,-0.53125 -0.27084,-0.111969 -0.55209,-0.156239 -0.84375,-0.15625 -0.42188,1.1e-5 -0.84897,0.119803 -1.3125,0.375 -0.46355,0.255219 -0.94011,0.648447 -1.40625,1.21875 -0.46615,0.570321 -0.92448,1.333342 -1.375,2.25 -0.45052,0.916674 -0.88021,2.026047 -1.28125,3.34375 l -0.0312,0 c 0.0521,-0.73437 0.0807,-1.424474 0.125,-2.0625 0.0443,-0.638014 0.0833,-1.252597 0.125,-1.84375 0.0417,-0.591138 0.0833,-1.177074 0.125,-1.75 0.0416,-0.572906 0.10675,-1.148426 0.15625,-1.75 0.0495,-0.60155 0.0963,-1.249987 0.15625,-1.90625 0.0599,-0.656236 0.14325,-1.367173 0.21875,-2.125 0.0755,-0.757797 0.1562,-1.580712 0.25,-2.46875 0.0937,-0.888002 0.1927,-1.84373 0.3125,-2.90625 -0.34376,-0.16665 -0.6875,-0.249978 -1,-0.25 z m 24.75,0 c -0.13542,2e-5 -0.26823,0.0052 -0.40625,0.03125 -0.13802,0.02606 -0.26563,0.07033 -0.375,0.125 -0.10938,0.05471 -0.20835,0.12763 -0.28125,0.21875 -0.0729,0.09117 -0.0888,0.187521 -0.0937,0.3125 -0.0365,0.583354 -0.0833,1.276061 -0.125,2.03125 -0.0417,0.755226 -0.0781,1.531267 -0.125,2.375 -0.0469,0.843766 -0.10935,1.731785 -0.15625,2.625 -0.0469,0.893242 -0.0833,1.770845 -0.125,2.625 -0.0417,0.854177 -0.0859,1.666676 -0.125,2.4375 -0.0391,0.770841 -0.0678,1.45834 -0.0937,2.0625 -0.0729,1.411463 -0.17709,2.664066 -0.3125,3.78125 -0.13542,1.117189 -0.33855,2.078126 -0.625,2.875 l 0.40625,0.09375 c 0.16145,-0.177084 0.3125,-0.395833 0.5,-0.6875 0.1875,-0.291666 0.38021,-0.666666 0.5625,-1.125 0.21875,0.322918 0.47395,0.575521 0.75,0.8125 0.27604,0.236979 0.56511,0.442708 0.875,0.59375 0.3099,0.151041 0.64322,0.27083 0.96875,0.34375 0.32552,0.07291 0.64582,0.09375 0.96875,0.09375 0.48436,0 0.95832,-0.06511 1.4375,-0.21875 0.47916,-0.153646 0.9427,-0.390624 1.375,-0.6875 0.43228,-0.296874 0.8177,-0.661457 1.1875,-1.09375 0.36978,-0.432289 0.6979,-0.91406 0.96875,-1.46875 0.27082,-0.554684 0.47134,-1.169267 0.625,-1.84375 0.15367,-0.674474 0.24998,-1.411452 0.25,-2.1875 0,-0.281242 -0.0286,-0.583325 -0.0625,-0.90625 -0.0339,-0.322908 -0.1042,-0.622387 -0.1875,-0.9375 -0.0833,-0.315095 -0.1771,-0.617178 -0.3125,-0.90625 -0.13543,-0.289052 -0.29689,-0.559885 -0.5,-0.78125 -0.20314,-0.221343 -0.44272,-0.398426 -0.71875,-0.53125 -0.27606,-0.132799 -0.60938,-0.187488 -0.96875,-0.1875 -0.42709,1.2e-5 -0.86199,0.140636 -1.34375,0.40625 -0.48178,0.265636 -0.97918,0.635427 -1.46875,1.15625 -0.48959,0.520843 -0.96355,1.166676 -1.4375,1.9375 -0.47397,0.770841 -0.93229,1.67709 -1.34375,2.6875 l -0.0937,0 c 0.0313,-0.786453 0.0729,-1.611972 0.125,-2.46875 0.0521,-0.856762 0.1172,-1.731761 0.1875,-2.625 0.0703,-0.893218 0.1641,-1.802071 0.25,-2.71875 0.0859,-0.916652 0.1588,-1.843735 0.25,-2.75 0.0911,-0.906233 0.18225,-1.802066 0.28125,-2.6875 0.099,-0.885397 0.2135,-1.729146 0.3125,-2.5625 -0.34376,-0.16665 -0.68229,-0.249978 -1,-0.25 z m -76.78125,3.1875 c -0.12501,2e-5 -0.25001,0.0052 -0.375,0.03125 -0.12501,0.02606 -0.21095,0.07033 -0.3125,0.125 -0.10158,0.0547 -0.1849,0.13804 -0.25,0.21875 -0.0652,0.08075 -0.12,0.166684 -0.125,0.28125 -0.0573,0.822933 -0.0859,1.572932 -0.125,2.25 -0.0391,0.677098 -0.099,1.317722 -0.125,1.90625 -0.026,0.588555 -0.0443,1.156262 -0.0625,1.6875 -0.0183,0.531261 -0.0156,1.06251 -0.0312,1.59375 -0.71877,0.0052 -1.41668,-0.0078 -2.09375,0 -0.6771,0.0078 -1.35678,0.01824 -2.03125,0.03125 -0.67449,0.01303 -1.3698,0.04428 -2.0625,0.0625 -0.69271,0.01824 -1.40626,0.03647 -2.15625,0.0625 0.0208,-0.848947 0.0417,-1.622385 0.0625,-2.28125 0.0208,-0.658842 0.0469,-1.223945 0.0625,-1.71875 0.0157,-0.494778 0.0208,-0.90884 0.0312,-1.25 0.0106,-0.341131 0,-0.624985 0,-0.84375 0,-0.333317 -0.0104,-0.614567 -0.0312,-0.875 -0.0208,-0.2604 -0.0598,-0.507796 -0.15625,-0.6875 -0.0964,-0.17967 -0.23959,-0.31509 -0.4375,-0.40625 -0.19792,-0.09113 -0.49479,-0.124982 -0.84375,-0.125 -0.35417,1.8e-5 -0.78646,0.05991 -1.3125,0.15625 -0.52604,0.09637 -1.15105,0.244809 -1.90625,0.4375 l 0.0625,0.625 c 0.53646,-0.07811 0.96875,-0.09373 1.3125,-0.09375 0.25521,2e-5 0.49219,0.01304 0.65625,0.0625 0.16406,0.0495 0.2813,0.140641 0.375,0.25 0.0938,0.109391 0.1537,0.231787 0.1875,0.40625 0.0339,0.174495 0.0625,0.380224 0.0625,0.625 -10e-5,1.270848 -0.0131,2.546888 -0.0312,3.78125 -0.0182,1.234385 -0.0573,2.479176 -0.0937,3.75 -0.0365,1.27084 -0.0755,2.559901 -0.125,3.90625 -0.0495,1.346356 -0.0937,2.78646 -0.15625,4.28125 l 0.125,0 1.84375,-0.21875 0.28125,-8.75 c 0.74999,-0.03645 1.46093,-0.0677 2.15625,-0.09375 0.6953,-0.02603 1.38802,-0.04687 2.0625,-0.0625 0.67447,-0.01562 1.35676,-0.02605 2.03125,-0.03125 0.67447,-0.0052 1.37498,9e-6 2.09375,0 -0.0104,0.322925 -0.0263,0.640634 -0.0312,0.96875 -0.005,0.328133 -0.0263,0.651049 -0.0312,1 -0.005,0.348965 0.003,0.72136 0,1.09375 -0.003,0.372401 -10e-6,0.776047 0,1.1875 l 0,1.75 c -10e-6,0.614586 0.0208,1.145835 0.0937,1.5625 0.0729,0.416668 0.1953,0.744792 0.34375,1 0.14843,0.255208 0.33853,0.450521 0.5625,0.5625 0.22394,0.111979 0.48436,0.156249 0.78125,0.15625 0.21873,0 0.4479,-0.02344 0.6875,-0.0625 0.23957,-0.03906 0.50259,-0.07812 0.78125,-0.15625 0.27863,-0.07813 0.58331,-0.192708 0.90625,-0.3125 0.3229,-0.119792 0.65623,-0.244791 1.03125,-0.40625 l -0.21875,-0.65625 c -0.33856,0.125001 -0.6146,0.21615 -0.84375,0.25 -0.22919,0.03385 -0.44273,0.03125 -0.65625,0.03125 -0.2969,10e-7 -0.5521,-0.04166 -0.75,-0.15625 -0.19793,-0.114582 -0.35158,-0.315103 -0.46875,-0.5625 -0.1172,-0.247394 -0.2031,-0.546872 -0.25,-0.9375 -0.0469,-0.390622 -0.0625,-0.854163 -0.0625,-1.40625 0,-0.833329 -0.008,-1.640619 0,-2.40625 0.008,-0.765617 0.0156,-1.515617 0.0312,-2.25 0.0156,-0.734365 0.0312,-1.466136 0.0625,-2.1875 0.0313,-0.721343 0.0833,-1.447904 0.125,-2.1875 0.0417,-0.739569 0.0963,-1.499985 0.15625,-2.28125 0.0599,-0.781234 0.1094,-1.614566 0.1875,-2.46875 -0.16668,-0.0729 -0.32553,-0.11717 -0.5,-0.15625 -0.17449,-0.03904 -0.34897,-0.06248 -0.5,-0.0625 z m 35.96875,6.65625 c -0.56251,1.2e-5 -1.09116,0.190115 -1.5625,0.5625 -0.47136,0.372406 -0.88802,0.880219 -1.28125,1.53125 -0.39323,0.651051 -0.7474,1.429695 -1.0625,2.3125 -0.31511,0.882818 -0.59376,1.822922 -0.84375,2.84375 l -0.0937,0 c 0.0469,-0.463537 0.0833,-0.9401 0.125,-1.40625 0.0417,-0.46614 0.0912,-0.914056 0.125,-1.34375 0.0339,-0.429681 0.0677,-0.812492 0.0937,-1.1875 0.026,-0.374991 0.0443,-0.716137 0.0625,-1 0.0183,-0.283845 0.0208,-0.510407 0.0312,-0.6875 0.0106,-0.177074 0.0312,-0.27603 0.0312,-0.3125 -1e-5,-0.395823 -0.0703,-0.705718 -0.21875,-0.90625 -0.14844,-0.20051 -0.40625,-0.281239 -0.75,-0.28125 -0.1875,1.1e-5 -0.55729,0.05991 -1.09375,0.1875 -0.53646,0.127615 -1.22917,0.343761 -2.09375,0.65625 l 0.125,0.5625 c 0.1875,-0.04686 0.35677,-0.09114 0.5,-0.125 0.14323,-0.03384 0.26042,-0.07291 0.375,-0.09375 0.11458,-0.02082 0.2188,-0.02082 0.3125,-0.03125 0.0937,-0.01043 0.19275,-0.03124 0.28125,-0.03125 0.17708,1e-5 0.30208,0.01824 0.40625,0.0625 0.10417,0.04428 0.1953,0.12501 0.25,0.21875 0.0547,0.09376 0.0781,0.203135 0.0937,0.34375 0.0154,0.140635 0.0312,0.307301 0.0312,0.5 0,0.234384 0.008,0.562508 0,0.96875 -0.008,0.406257 -0.0131,0.861986 -0.0312,1.375 -0.0182,0.513027 -0.0391,1.06511 -0.0625,1.65625 -0.0234,0.59115 -0.0625,1.179691 -0.0937,1.78125 -0.0313,0.601565 -0.0573,1.197919 -0.0937,1.78125 -0.0365,0.583334 -0.0833,1.130208 -0.125,1.625 l 0.125,0 1.625,-0.1875 c 0.0312,-0.338541 0.0808,-0.752603 0.15625,-1.25 0.0755,-0.497394 0.1901,-1.028643 0.3125,-1.59375 0.12239,-0.565101 0.26823,-1.153642 0.4375,-1.75 0.16927,-0.596349 0.35156,-1.177077 0.5625,-1.71875 0.21094,-0.54166 0.43229,-1.023431 0.6875,-1.46875 0.25521,-0.445305 0.54687,-0.791658 0.84375,-1.0625 0.18228,-0.166658 0.37499,-0.3177 0.59375,-0.40625 0.21874,-0.08853 0.45312,-0.124991 0.6875,-0.125 0.21874,9e-6 0.42968,0.04428 0.625,0.125 0.19531,0.08074 0.40624,0.223967 0.625,0.40625 l 0.0625,0 c 0.21874,-0.166658 0.36718,-0.377595 0.46875,-0.59375 0.10155,-0.216136 0.15624,-0.421865 0.15625,-0.65625 -10e-6,-0.182282 -0.0521,-0.377594 -0.125,-0.53125 -0.0729,-0.153635 -0.15626,-0.26301 -0.28125,-0.375 -0.12501,-0.111968 -0.26564,-0.21874 -0.4375,-0.28125 -0.17189,-0.06249 -0.36459,-0.09374 -0.5625,-0.09375 z m 58.375,0 c -0.56251,1.2e-5 -1.09116,0.190115 -1.5625,0.5625 -0.47136,0.372406 -0.88802,0.880219 -1.28125,1.53125 -0.39323,0.651051 -0.7474,1.429695 -1.0625,2.3125 -0.31511,0.882818 -0.59376,1.822922 -0.84375,2.84375 l -0.0937,0 c 0.0469,-0.463537 0.0833,-0.9401 0.125,-1.40625 0.0417,-0.46614 0.0911,-0.914056 0.125,-1.34375 0.0338,-0.429681 0.0678,-0.812492 0.0937,-1.1875 0.026,-0.374991 0.0443,-0.716137 0.0625,-1 0.0183,-0.283845 0.0208,-0.510407 0.0312,-0.6875 0.0106,-0.177074 0.0312,-0.27603 0.0312,-0.3125 -1e-5,-0.395823 -0.0703,-0.705718 -0.21875,-0.90625 -0.14844,-0.20051 -0.40625,-0.281239 -0.75,-0.28125 -0.1875,1.1e-5 -0.55729,0.05991 -1.09375,0.1875 -0.53646,0.127615 -1.22917,0.343761 -2.09375,0.65625 l 0.125,0.5625 c 0.1875,-0.04686 0.35677,-0.09114 0.5,-0.125 0.14323,-0.03384 0.26042,-0.07291 0.375,-0.09375 0.11458,-0.02082 0.2188,-0.02082 0.3125,-0.03125 0.0937,-0.01043 0.19275,-0.03124 0.28125,-0.03125 0.17708,1e-5 0.30208,0.01824 0.40625,0.0625 0.10417,0.04428 0.1953,0.12501 0.25,0.21875 0.0547,0.09376 0.0782,0.203135 0.0937,0.34375 0.0154,0.140635 0.0312,0.307301 0.0312,0.5 0,0.234384 0.008,0.562508 0,0.96875 -0.008,0.406257 -0.0131,0.861986 -0.0312,1.375 -0.0182,0.513027 -0.0391,1.06511 -0.0625,1.65625 -0.0234,0.59115 -0.0625,1.179691 -0.0937,1.78125 -0.0313,0.601565 -0.0574,1.197919 -0.0937,1.78125 -0.0365,0.583334 -0.0833,1.130208 -0.125,1.625 l 0.125,0 1.625,-0.1875 c 0.0312,-0.338541 0.0807,-0.752603 0.15625,-1.25 0.0755,-0.497394 0.1901,-1.028643 0.3125,-1.59375 0.12239,-0.565101 0.26823,-1.153642 0.4375,-1.75 0.16927,-0.596349 0.35156,-1.177077 0.5625,-1.71875 0.21094,-0.54166 0.43229,-1.023431 0.6875,-1.46875 0.25521,-0.445305 0.54687,-0.791658 0.84375,-1.0625 0.18228,-0.166658 0.37499,-0.3177 0.59375,-0.40625 0.21874,-0.08853 0.45312,-0.124991 0.6875,-0.125 0.21874,9e-6 0.42968,0.04428 0.625,0.125 0.19531,0.08074 0.40624,0.223967 0.625,0.40625 l 0.0625,0 c 0.21874,-0.166658 0.36718,-0.377595 0.46875,-0.59375 0.10155,-0.216136 0.15624,-0.421865 0.15625,-0.65625 -10e-6,-0.182282 -0.0521,-0.377594 -0.125,-0.53125 -0.0729,-0.153635 -0.15626,-0.26301 -0.28125,-0.375 -0.12501,-0.111968 -0.26564,-0.21874 -0.4375,-0.28125 -0.17189,-0.06249 -0.36459,-0.09374 -0.5625,-0.09375 z m -85,0.03125 c -0.29688,2e-5 -0.6224,0.02866 -0.96875,0.09375 -0.34636,0.06512 -0.68751,0.158865 -1.03125,0.28125 -0.34376,0.122407 -0.67709,0.260427 -1,0.4375 -0.32292,0.177094 -0.63021,0.369802 -0.875,0.59375 -0.24479,0.223968 -0.41406,0.479176 -0.5625,0.75 -0.14846,0.270842 -0.25,0.567717 -0.25,0.875 0,0.187508 0.0599,0.348966 0.125,0.5 0.0651,0.151049 0.13802,0.270841 0.25,0.375 0.11198,0.104174 0.2526,0.19532 0.40625,0.25 0.15365,0.05469 0.32291,0.09376 0.5,0.09375 0.30208,7e-6 0.57813,-0.07291 0.875,-0.21875 l 0.0312,-0.09375 c -0.17708,-0.239575 -0.2839,-0.497388 -0.375,-0.75 -0.0911,-0.252596 -0.15625,-0.499992 -0.15625,-0.75 0,-0.213533 0.0547,-0.408845 0.125,-0.59375 0.0703,-0.184887 0.18489,-0.333324 0.34375,-0.46875 0.15885,-0.135407 0.33854,-0.26561 0.59375,-0.34375 0.25521,-0.07812 0.56771,-0.09374 0.9375,-0.09375 0.27604,1e-5 0.5677,0.03126 0.84375,0.125 0.27603,0.09376 0.53124,0.244802 0.75,0.4375 0.21874,0.192718 0.39582,0.447926 0.53125,0.75 0.13542,0.302092 0.18749,0.65105 0.1875,1.0625 -10e-5,0.3698 -0.008,0.692716 -0.0312,1 -0.0234,0.307299 -0.0573,0.640632 -0.0937,0.96875 -0.56771,6e-6 -1.10939,0.02344 -1.65625,0.09375 -0.54688,0.07032 -1.07292,0.169276 -1.5625,0.3125 -0.48959,0.143234 -0.95833,0.34636 -1.375,0.5625 -0.41667,0.216151 -0.76302,0.45313 -1.0625,0.75 -0.29948,0.296879 -0.51823,0.656254 -0.6875,1.03125 -0.16936,0.375003 -0.2813,0.791669 -0.2813,1.25 0,0.354168 0.0703,0.669272 0.1875,0.96875 0.11719,0.29948 0.28906,0.562501 0.5,0.78125 0.21094,0.21875 0.45312,0.375 0.75,0.5 0.29687,0.125 0.64062,0.1875 1,0.1875 0.43749,0 0.85156,-0.101563 1.25,-0.3125 0.39843,-0.210937 0.77343,-0.471354 1.125,-0.8125 0.35156,-0.341145 0.67448,-0.752603 0.96875,-1.1875 0.29427,-0.434894 0.55728,-0.864581 0.78125,-1.3125 l 0.0312,0 c -0.0261,0.151045 -0.0233,0.302087 -0.0312,0.4375 -0.008,0.13542 -0.0313,0.270836 -0.0312,0.40625 -10e-6,0.453127 0.0729,0.843751 0.1875,1.1875 0.11457,0.343751 0.26041,0.617188 0.46875,0.84375 0.20833,0.226562 0.46353,0.416667 0.75,0.53125 0.28645,0.114585 0.59895,0.15625 0.9375,0.15625 0.45311,0 0.86978,-0.06771 1.28125,-0.25 0.41145,-0.182292 0.80728,-0.463541 1.15625,-0.8125 l -0.21875,-0.34375 c -0.49481,0.296876 -0.94272,0.46875 -1.34375,0.46875 -0.45314,0 -0.81511,-0.216145 -1.09375,-0.59375 -0.27866,-0.377603 -0.43751,-0.937498 -0.4375,-1.6875 0,-0.473955 0.0338,-0.92708 0.0625,-1.40625 0.0287,-0.479162 0.0573,-0.955724 0.0937,-1.40625 0.0364,-0.450515 0.0652,-0.869785 0.0937,-1.28125 0.0287,-0.411451 0.0312,-0.812492 0.0312,-1.15625 -1e-5,-0.499991 -0.0443,-0.947907 -0.15625,-1.34375 -0.11199,-0.395823 -0.28907,-0.721344 -0.53125,-1 -0.24219,-0.278635 -0.54949,-0.479156 -0.9375,-0.625 -0.38803,-0.14582 -0.85939,-0.218739 -1.40625,-0.21875 z m 33.6875,0 c -0.29688,2e-5 -0.6224,0.02866 -0.96875,0.09375 -0.34636,0.06512 -0.68751,0.158865 -1.03125,0.28125 -0.34376,0.122407 -0.67709,0.260427 -1,0.4375 -0.32292,0.177094 -0.63021,0.369802 -0.875,0.59375 -0.24479,0.223968 -0.41406,0.479176 -0.5625,0.75 -0.14846,0.270842 -0.25,0.567717 -0.25,0.875 0,0.187508 0.0599,0.348966 0.125,0.5 0.0651,0.151049 0.13802,0.270841 0.25,0.375 0.11198,0.104174 0.2526,0.19532 0.40625,0.25 0.15365,0.05469 0.32291,0.09376 0.5,0.09375 0.30208,7e-6 0.57813,-0.07291 0.875,-0.21875 l 0.0312,-0.09375 c -0.17708,-0.239575 -0.2839,-0.497388 -0.375,-0.75 -0.0911,-0.252596 -0.15625,-0.499992 -0.15625,-0.75 0,-0.213533 0.0547,-0.408845 0.125,-0.59375 0.0703,-0.184887 0.18489,-0.333324 0.34375,-0.46875 0.15885,-0.135407 0.33854,-0.26561 0.59375,-0.34375 0.25521,-0.07812 0.56771,-0.09374 0.9375,-0.09375 0.27604,1e-5 0.5677,0.03126 0.84375,0.125 0.27603,0.09376 0.53124,0.244802 0.75,0.4375 0.21874,0.192718 0.39582,0.447926 0.53125,0.75 0.13542,0.302092 0.18749,0.65105 0.1875,1.0625 -10e-5,0.3698 -0.008,0.692716 -0.0312,1 -0.0234,0.307299 -0.0573,0.640632 -0.0937,0.96875 -0.56771,6e-6 -1.10939,0.02344 -1.65625,0.09375 -0.54688,0.07032 -1.07292,0.169276 -1.5625,0.3125 -0.48959,0.143234 -0.95833,0.34636 -1.375,0.5625 -0.41667,0.216151 -0.76302,0.45313 -1.0625,0.75 -0.29948,0.296879 -0.51823,0.656254 -0.6875,1.03125 -0.16931,0.375003 -0.28125,0.791669 -0.28125,1.25 0,0.354168 0.0703,0.669272 0.1875,0.96875 0.11719,0.29948 0.28906,0.562501 0.5,0.78125 0.21094,0.21875 0.45312,0.375 0.75,0.5 0.29687,0.125 0.64062,0.1875 1,0.1875 0.43749,0 0.85156,-0.101563 1.25,-0.3125 0.39843,-0.210937 0.77343,-0.471354 1.125,-0.8125 0.35156,-0.341145 0.67448,-0.752603 0.96875,-1.1875 0.29427,-0.434894 0.55728,-0.864581 0.78125,-1.3125 l 0.0312,0 c -0.0261,0.151045 -0.0233,0.302087 -0.0312,0.4375 -0.008,0.13542 -0.0313,0.270836 -0.0312,0.40625 -1e-5,0.453127 0.0729,0.843751 0.1875,1.1875 0.11457,0.343751 0.26041,0.617188 0.46875,0.84375 0.20833,0.226562 0.46353,0.416667 0.75,0.53125 0.28645,0.114585 0.59895,0.15625 0.9375,0.15625 0.45311,0 0.86978,-0.06771 1.28125,-0.25 0.41145,-0.182292 0.80728,-0.463541 1.15625,-0.8125 l -0.21875,-0.34375 c -0.49481,0.296876 -0.94272,0.46875 -1.34375,0.46875 -0.45314,0 -0.81511,-0.216145 -1.09375,-0.59375 -0.27866,-0.377603 -0.43751,-0.937498 -0.4375,-1.6875 0,-0.473955 0.0338,-0.92708 0.0625,-1.40625 0.0287,-0.479162 0.0573,-0.955724 0.0937,-1.40625 0.0364,-0.450515 0.0652,-0.869785 0.0937,-1.28125 0.0287,-0.411451 0.0312,-0.812492 0.0312,-1.15625 -10e-6,-0.499991 -0.0443,-0.947907 -0.15625,-1.34375 -0.11199,-0.395823 -0.28907,-0.721344 -0.53125,-1 -0.24219,-0.278635 -0.54949,-0.479156 -0.9375,-0.625 -0.38803,-0.14582 -0.85939,-0.218739 -1.40625,-0.21875 z m 24.6875,0 c -0.29688,2e-5 -0.6224,0.02866 -0.96875,0.09375 -0.34636,0.06512 -0.68751,0.158865 -1.03125,0.28125 -0.34376,0.122407 -0.67709,0.260427 -1,0.4375 -0.32292,0.177094 -0.63021,0.369802 -0.875,0.59375 -0.24479,0.223968 -0.41406,0.479176 -0.5625,0.75 -0.14846,0.270842 -0.25,0.567717 -0.25,0.875 0,0.187508 0.0599,0.348966 0.125,0.5 0.0651,0.151049 0.13802,0.270841 0.25,0.375 0.11198,0.104174 0.2526,0.19532 0.40625,0.25 0.15365,0.05469 0.32291,0.09376 0.5,0.09375 0.30208,7e-6 0.57813,-0.07291 0.875,-0.21875 l 0.0312,-0.09375 c -0.17708,-0.239575 -0.2839,-0.497388 -0.375,-0.75 -0.0911,-0.252596 -0.15625,-0.499992 -0.15625,-0.75 0,-0.213533 0.0547,-0.408845 0.125,-0.59375 0.0703,-0.184887 0.18489,-0.333324 0.34375,-0.46875 0.15885,-0.135407 0.33854,-0.26561 0.59375,-0.34375 0.25521,-0.07812 0.56771,-0.09374 0.9375,-0.09375 0.27604,1e-5 0.5677,0.03126 0.84375,0.125 0.27603,0.09376 0.53124,0.244802 0.75,0.4375 0.21874,0.192718 0.39582,0.447926 0.53125,0.75 0.13542,0.302092 0.18749,0.65105 0.1875,1.0625 0,0.3698 -0.008,0.692716 -0.0312,1 -0.0234,0.307299 -0.0574,0.640632 -0.0937,0.96875 -0.56771,6e-6 -1.10939,0.02344 -1.65625,0.09375 -0.54688,0.07032 -1.07292,0.169276 -1.5625,0.3125 -0.48959,0.143234 -0.95833,0.34636 -1.375,0.5625 -0.41667,0.216151 -0.76302,0.45313 -1.0625,0.75 -0.29948,0.296879 -0.51823,0.656254 -0.6875,1.03125 -0.16931,0.375003 -0.28125,0.791669 -0.28125,1.25 0,0.354168 0.0703,0.669272 0.1875,0.96875 0.11719,0.29948 0.28906,0.562501 0.5,0.78125 0.21094,0.21875 0.45312,0.375 0.75,0.5 0.29687,0.125 0.64062,0.1875 1,0.1875 0.43749,0 0.85156,-0.101563 1.25,-0.3125 0.39843,-0.210937 0.77343,-0.471354 1.125,-0.8125 0.35156,-0.341145 0.67448,-0.752603 0.96875,-1.1875 0.29427,-0.434894 0.55728,-0.864581 0.78125,-1.3125 l 0.0312,0 c -0.0261,0.151045 -0.0232,0.302087 -0.0312,0.4375 -0.008,0.13542 -0.0313,0.270836 -0.0312,0.40625 -1e-5,0.453127 0.0729,0.843751 0.1875,1.1875 0.11457,0.343751 0.26041,0.617188 0.46875,0.84375 0.20833,0.226562 0.46353,0.416667 0.75,0.53125 0.28645,0.114585 0.59895,0.15625 0.9375,0.15625 0.45311,0 0.86978,-0.06771 1.28125,-0.25 0.41145,-0.182292 0.80728,-0.463541 1.15625,-0.8125 l -0.21875,-0.34375 c -0.49481,0.296876 -0.94272,0.46875 -1.34375,0.46875 -0.45314,0 -0.81511,-0.216145 -1.09375,-0.59375 -0.27866,-0.377603 -0.43751,-0.937498 -0.4375,-1.6875 0,-0.473955 0.0338,-0.92708 0.0625,-1.40625 0.0287,-0.479162 0.0572,-0.955724 0.0937,-1.40625 0.0365,-0.450515 0.0651,-0.869785 0.0937,-1.28125 0.0287,-0.411451 0.0312,-0.812492 0.0312,-1.15625 -10e-6,-0.499991 -0.0443,-0.947907 -0.15625,-1.34375 -0.11199,-0.395823 -0.28907,-0.721344 -0.53125,-1 -0.24219,-0.278635 -0.54949,-0.479156 -0.9375,-0.625 -0.38803,-0.14582 -0.85939,-0.218739 -1.40625,-0.21875 z m -44.6875,1.875 c 0.27082,9e-6 0.49739,0.08595 0.6875,0.28125 0.1901,0.195321 0.35156,0.445321 0.46875,0.75 0.11718,0.304695 0.1953,0.656258 0.25,1.03125 0.0546,0.375007 0.0937,0.73959 0.0937,1.09375 -10e-6,0.916672 -0.11198,1.71615 -0.3125,2.4375 -0.20053,0.721357 -0.46876,1.343753 -0.8125,1.84375 -0.34376,0.500002 -0.75782,0.86198 -1.21875,1.125 -0.46095,0.263021 -0.94792,0.40625 -1.46875,0.40625 -0.31771,0 -0.6224,-0.05729 -0.90625,-0.15625 -0.28386,-0.09896 -0.51823,-0.221353 -0.75,-0.40625 -0.23178,-0.184895 -0.42969,-0.424478 -0.59375,-0.6875 -0.16407,-0.263019 -0.2969,-0.552081 -0.375,-0.875 -10e-6,-0.171872 0.0208,-0.398435 0.0937,-0.6875 0.0729,-0.289059 0.17968,-0.61458 0.3125,-0.96875 0.13281,-0.354162 0.3151,-0.731766 0.5,-1.125 0.18489,-0.393223 0.39322,-0.770827 0.625,-1.15625 0.23177,-0.385409 0.45312,-0.773431 0.71875,-1.125 0.26562,-0.351555 0.55469,-0.638012 0.84375,-0.90625 0.28906,-0.26822 0.59635,-0.497387 0.90625,-0.65625 0.30989,-0.158841 0.61978,-0.218741 0.9375,-0.21875 z m 58.375,0 c 0.27082,9e-6 0.49739,0.08595 0.6875,0.28125 0.1901,0.195321 0.35156,0.445321 0.46875,0.75 0.11718,0.304695 0.1953,0.656258 0.25,1.03125 0.0546,0.375007 0.0937,0.73959 0.0937,1.09375 -10e-6,0.916672 -0.11198,1.71615 -0.3125,2.4375 -0.20053,0.721357 -0.46876,1.343753 -0.8125,1.84375 -0.34376,0.500002 -0.75782,0.86198 -1.21875,1.125 -0.46095,0.263021 -0.94792,0.40625 -1.46875,0.40625 -0.31771,0 -0.6224,-0.05729 -0.90625,-0.15625 -0.28386,-0.09896 -0.51823,-0.221353 -0.75,-0.40625 -0.23178,-0.184895 -0.42969,-0.424478 -0.59375,-0.6875 -0.16407,-0.263019 -0.2969,-0.552081 -0.375,-0.875 -10e-6,-0.171872 0.0208,-0.398435 0.0937,-0.6875 0.0729,-0.289059 0.17968,-0.61458 0.3125,-0.96875 0.13281,-0.354162 0.3151,-0.731766 0.5,-1.125 0.18489,-0.393223 0.39322,-0.770827 0.625,-1.15625 0.23177,-0.385409 0.45312,-0.773431 0.71875,-1.125 0.26562,-0.351555 0.55469,-0.638012 0.84375,-0.90625 0.28906,-0.26822 0.59635,-0.497387 0.90625,-0.65625 0.30989,-0.158841 0.61978,-0.218741 0.9375,-0.21875 z m -70.96875,4.0625 c -0.0365,0.369797 -0.10157,0.710942 -0.21875,1.0625 -0.11719,0.351567 -0.26043,0.682296 -0.4375,1 -0.17709,0.317712 -0.3724,0.606773 -0.59375,0.875 -0.22136,0.268231 -0.47657,0.526043 -0.71875,0.71875 -0.2422,0.19271 -0.46876,0.328126 -0.71875,0.4375 -0.25001,0.109372 -0.51563,0.156251 -0.75,0.15625 -0.20833,10e-7 -0.38282,-0.04427 -0.53125,-0.125 -0.14844,-0.08073 -0.24735,-0.171873 -0.34375,-0.3125 -0.0964,-0.140623 -0.17445,-0.315102 -0.21875,-0.5 -0.0443,-0.184893 -0.0625,-0.359373 -0.0625,-0.5625 -10e-6,-0.359372 0.0365,-0.695309 0.15625,-0.96875 0.11979,-0.273434 0.28906,-0.518225 0.5,-0.71875 0.21093,-0.200517 0.45833,-0.364578 0.75,-0.5 0.29167,-0.135411 0.6276,-0.22916 0.96875,-0.3125 0.34114,-0.08333 0.68229,-0.14843 1.0625,-0.1875 0.38021,-0.03906 0.77083,-0.05208 1.15625,-0.0625 z m 33.6875,0 c -0.0365,0.369797 -0.10157,0.710942 -0.21875,1.0625 -0.11719,0.351567 -0.26043,0.682296 -0.4375,1 -0.17709,0.317712 -0.3724,0.606773 -0.59375,0.875 -0.22136,0.268231 -0.47657,0.526043 -0.71875,0.71875 -0.2422,0.19271 -0.46876,0.328126 -0.71875,0.4375 -0.25001,0.109372 -0.51563,0.156251 -0.75,0.15625 -0.20833,10e-7 -0.38282,-0.04427 -0.53125,-0.125 -0.14844,-0.08073 -0.24735,-0.171873 -0.34375,-0.3125 -0.0964,-0.140623 -0.17445,-0.315102 -0.21875,-0.5 -0.0443,-0.184893 -0.0625,-0.359373 -0.0625,-0.5625 -10e-6,-0.359372 0.0365,-0.695309 0.15625,-0.96875 0.11979,-0.273434 0.28906,-0.518225 0.5,-0.71875 0.21093,-0.200517 0.45833,-0.364578 0.75,-0.5 0.29167,-0.135411 0.6276,-0.22916 0.96875,-0.3125 0.34114,-0.08333 0.68229,-0.14843 1.0625,-0.1875 0.38021,-0.03906 0.77083,-0.05208 1.15625,-0.0625 z m 24.6875,0 c -0.0365,0.369797 -0.10157,0.710942 -0.21875,1.0625 -0.11719,0.351567 -0.26043,0.682296 -0.4375,1 -0.17709,0.317712 -0.3724,0.606773 -0.59375,0.875 -0.22136,0.268231 -0.47657,0.526043 -0.71875,0.71875 -0.2422,0.19271 -0.46876,0.328126 -0.71875,0.4375 -0.25001,0.109372 -0.51563,0.156251 -0.75,0.15625 -0.20833,10e-7 -0.38282,-0.04427 -0.53125,-0.125 -0.14844,-0.08073 -0.24735,-0.171873 -0.34375,-0.3125 -0.0964,-0.140623 -0.17445,-0.315102 -0.21875,-0.5 -0.0443,-0.184893 -0.0625,-0.359373 -0.0625,-0.5625 -10e-6,-0.359372 0.0365,-0.695309 0.15625,-0.96875 0.11979,-0.273434 0.28906,-0.518225 0.5,-0.71875 0.21093,-0.200517 0.45833,-0.364578 0.75,-0.5 0.29167,-0.135411 0.6276,-0.22916 0.96875,-0.3125 0.34114,-0.08333 0.68229,-0.14843 1.0625,-0.1875 0.38021,-0.03906 0.77083,-0.05208 1.15625,-0.0625 z" | |
id="text" | |
class="weirdPath"/> | |
<path | |
d="m 418.7908,152.72546 c 3.7464,2.00501 8.33333,1.66667 12.5,2.5 4.16667,0.83333 8.25137,2.43149 12.5,2.5 5.06831,0.0817 10,-1.66667 15,-2.5 5,-0.83333 10.92257,0.51148 15,-2.5 1.49889,-1.10704 1.66667,-3.33333 2.5,-5 0.83333,-1.66667 2.07188,-3.18646 2.5,-5 0.19146,-0.81104 0,-1.66667 0,-2.5 0,-0.83333 0,-1.66667 0,-2.5 0,-0.83333 0,-1.66667 0,-2.5 0,-0.83333 0.3189,-1.7301 0,-2.5 -0.451,-1.0888 -1.66667,-1.66667 -2.5,-2.5 -0.83333,-0.83333 -1.66667,-1.66667 -2.5,-2.5 -0.83333,-0.83333 -1.66667,-1.66667 -2.5,-2.5 -0.83333,-0.83333 -1.4112,-2.049 -2.5,-2.5 -1.5398,-0.63781 -3.33333,0 -5,0 -1.66667,0 -3.4602,-0.63781 -5,0 -1.0888,0.451 -1.66667,1.66667 -2.5,2.5 -0.83333,0.83333 -1.66667,1.66667 -2.5,2.5 -0.83333,0.83333 -1.66667,1.66667 -2.5,2.5 -0.83333,0.83333 -2.049,1.4112 -2.5,2.5 -0.63781,1.5398 0,3.33333 0,5 0,1.66667 -0.38292,3.37792 0,5 0.42812,1.81354 1.66667,3.33333 2.5,5 0.83333,1.66667 1.00111,3.89296 2.5,5 4.07743,3.01148 10,1.66667 15,2.5 5,0.83333 9.93169,2.58173 15,2.5 4.24863,-0.0685 8.33333,-1.66667 12.5,-2.5 4.16667,-0.83333 8.7536,-0.49499 12.5,-2.5 2.07813,-1.11218 3.33333,-3.33333 5,-5 1.66667,-1.66667 3.62182,-3.08788 5,-5 1.08954,-1.51166 1.66667,-3.33333 2.5,-5 0.83333,-1.66667 2.07188,-3.18646 2.5,-5 0.38292,-1.62208 0,-3.33333 0,-5 0,-1.66667 0.20364,-3.34582 0,-5 -0.41981,-3.41018 -1.66667,-6.66667 -2.5,-10 -0.83333,-3.33333 -0.80713,-7.01006 -2.5,-10 -0.58065,-1.02554 -1.66667,-1.66667 -2.5,-2.5 -0.83333,-0.833328 -1.66667,-1.666668 -2.5,-2.499998 -0.83333,-0.83333 -1.66667,-1.66667 -2.5,-2.5 -0.83333,-0.83333 -1.54394,-1.810911 -2.5,-2.499999 -1.51166,-1.089543 -3.33333,-1.666667 -5,-2.5 -1.66667,-0.833333 -3.27845,-1.786912 -5,-2.5 -2.43464,-1.008459 -5,-1.666667 -7.5,-2.5 -2.5,-0.833333 -5,-1.666667 -7.5,-2.5 -2.5,-0.833333 -5,-1.666667 -7.5,-2.5 -2.5,-0.833333 -4.8988,-2.077883 -7.5,-2.5 -1.64515,-0.26697 -3.33333,0 -5,0 -1.66667,0 -3.35485,-0.26697 -5,0 -5.20241,0.844235 -10,3.333333 -15,5 -5,1.666667 -10.13073,2.983081 -15,5 -1.72155,0.713088 -3.33333,1.666667 -5,2.5 -1.66667,0.833333 -3.48834,1.410457 -5,2.5 -1.91212,1.378175 -3.33333,3.333329 -5,4.999999 -1.66667,1.66667 -3.8387,2.948918 -5,4.999998 -1.69287,2.98994 -1.66667,6.66667 -2.5,10 -0.83333,3.33333 -2.08019,6.58982 -2.5,10 -0.20364,1.65418 0,3.33333 0,5 0,1.66667 -0.38292,3.37792 0,5 0.42812,1.81354 1.66667,3.33333 2.5,5 0.83333,1.66667 1.41046,3.48834 2.5,5 1.37818,1.91212 3.33333,3.33333 5,5 1.66667,1.66667 2.92187,3.88782 5,5 z" | |
id="trek" | |
class="weirdPath"/> | |
<path | |
d="m 201.88696,57.704676 c 47.99077,0 0,119.976934 47.99077,95.981554 47.99077,-23.99539 0,-119.976941 47.99077,-143.972329 47.99078,-23.995388 167.96772,47.990775 47.99078,95.981549 -119.97694,47.99078 -167.96771,47.99078 -287.94465,0 -119.976939,-47.990774 0,-119.976937 47.99077,-95.981549 47.99078,23.995388 0,119.976939 47.99078,143.972329 47.99078,23.99538 0,-95.981554 47.99078,-95.981554" | |
id="wiggle" | |
class="weirdPath"/> | |
</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
path { | |
fill: none; | |
stroke: #000; | |
stroke-width: 1px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment