Pattern fun
by JeremiePat
HTML
<svg width="300px" height="300px" viewBox="0 0 400 400">
<defs>
<pattern id="idPattern"
x="0"
y="0"
width="200"
height="200"
patternUnits="userSpaceOnUse">
<!-- TOP-LEFT -->
<circle cx="100" cy="100" r="90"
transform="translate(0, 0), scale(0.5)" />
<!-- TOP-RIGHT -->
<circle cx="100" cy="100" r="90"
transform="translate(125, 25), scale(0.25)" />
<!-- BOTTOM-LEFT -->
<circle cx="100" cy="100" r="90"
transform="translate(25, 125), scale(0.25)" />
<!-- BOTTOM-RIGHT -->
<circle cx="100" cy="100" r="90"
transform="translate(100, 100), scale(0.5)" />
</pattern>
</defs>
<rect stroke-width="1" stroke="black" x="0" y="0" width="100%" height="100%" fill="url(#idPattern)"/>
</svg>