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 </clipPath> | 5 </clipPath> |
6 | 6 |
7 <clipPath id="clip2" clipPathUnits="objectBoundingBox"> | 7 <clipPath id="clip2" clipPathUnits="objectBoundingBox"> |
8 <circle cx="0" cy="1" r="0.5"/> | 8 <circle cx="0" cy="1" r="0.5"/> |
9 </clipPath> | 9 </clipPath> |
10 | 10 |
(...skipping 18 matching lines...) Expand all Loading... |
29 </mask> | 29 </mask> |
30 | 30 |
31 <mask id="mask2" x="0" y="0" width="1" height="1" maskContentUnits="objectBo
undingBox"> | 31 <mask id="mask2" x="0" y="0" width="1" height="1" maskContentUnits="objectBo
undingBox"> |
32 <rect x="0" y="0" width="1" height="1" fill="white" clip-path="url(#clip
)" /> | 32 <rect x="0" y="0" width="1" height="1" fill="white" clip-path="url(#clip
)" /> |
33 </mask> | 33 </mask> |
34 </defs> | 34 </defs> |
35 | 35 |
36 <circle cx="50" cy="50" r="50" fill="black" mask="url(#mask1)" /> | 36 <circle cx="50" cy="50" r="50" fill="black" mask="url(#mask1)" /> |
37 <circle cx="150" cy="150" r="50" fill="black" mask="url(#mask2)" /> | 37 <circle cx="150" cy="150" r="50" fill="black" mask="url(#mask2)" /> |
38 </svg> | 38 </svg> |
OLD | NEW |