OLD | NEW |
1 <svg xmlns="http://www.w3.org/2000/svg"> | 1 <svg xmlns="http://www.w3.org/2000/svg"> |
2 <defs> | 2 <defs> |
3 <clipPath id="clip1" clipPathUnits="objectBoundingBox"> | 3 <clipPath id="clip1" clipPathUnits="objectBoundingBox"> |
4 <circle cx="0" cy="0" r="0.5"/> | 4 <circle cx="0" cy="0" r="0.5"/> |
5 <circle cx="0" cy="1" r="0.5"/> | 5 <circle cx="0" cy="1" r="0.5"/> |
6 <circle cx="1" cy="0" r="0.5"/> | 6 <circle cx="1" cy="0" r="0.5"/> |
7 </clipPath> | 7 </clipPath> |
8 | 8 |
9 <clipPath id="clip2" clipPathUnits="objectBoundingBox"> | 9 <clipPath id="clip2" clipPathUnits="objectBoundingBox"> |
10 <circle cx="1" cy="1" r="0.5"/> | 10 <circle cx="1" cy="1" r="0.5"/> |
(...skipping 10 matching lines...) Expand all Loading... |
21 </mask> | 21 </mask> |
22 | 22 |
23 <mask id="mask2" x="0" y="0" width="1" height="1" maskContentUnits="objectBo
undingBox"> | 23 <mask id="mask2" x="0" y="0" width="1" height="1" maskContentUnits="objectBo
undingBox"> |
24 <rect x="0" y="0" width="1" height="1" fill="white" clip-path="url(#clip
)" /> | 24 <rect x="0" y="0" width="1" height="1" fill="white" clip-path="url(#clip
)" /> |
25 </mask> | 25 </mask> |
26 </defs> | 26 </defs> |
27 | 27 |
28 <circle cx="50" cy="50" r="50" fill="black" mask="url(#mask1)" /> | 28 <circle cx="50" cy="50" r="50" fill="black" mask="url(#mask1)" /> |
29 <circle cx="150" cy="150" r="50" fill="black" mask="url(#mask2)" /> | 29 <circle cx="150" cy="150" r="50" fill="black" mask="url(#mask2)" /> |
30 </svg> | 30 </svg> |
OLD | NEW |