blob: 44ec2997f220172b5b2f60afc75fc4b83b86156f (
plain)
1
2
3
4
5
6
7
8
9
10
|
<svg>
<defs>
<clipPath id="clip" transform="translate(-50,0)">
<rect x="0" y="0" width="100" height="100" transform="translate(50,0)"></rect>
</clipPath>
</defs>
<g clip-path="url(#clip)">
<circle cx="50" cy="50" r="50" style="fill: green;"></circle>
</g>
</svg>
|