blob: 150e143981c52e51f9967489cfc22899be83f007 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg>
<svg width="400" height="400" viewBox="-100 -100 200 200" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="2">
<g id="1">
<circle cx="60" r="20"/>
<path d="M 0,0 h 60" stroke="black" stroke-width="10"/>
</g>
<use xlink:href="#1" transform="scale(-1, -1)"/>
</g>
<use xlink:href="#2" transform="rotate(60)"/>
<use xlink:href="#2" transform="rotate(-60)"/>
</svg>
|