Programmatically generate SVG (vector) images, animations, and interactive Jupyter widgets
1<?xml version="1.0" encoding="UTF-8"?> 2<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" 3 width="400" height="400.0" viewBox="-0.7 -0.7 1.4 1.4"> 4<defs> 5<clipPath id="d0"> 6<rect x="-0.25" y="-0.25" width="1" height="1" /> 7</clipPath> 8</defs> 9<circle cx="0" cy="0" r="0.5" stroke-width="0.01" stroke="black" fill-opacity="0.3" clip-path="url(#d0)" id="circle" /> 10<g opacity="0.5" clip-path="url(#d0)"> 11<use xlink:href="#circle" x="0.25" y="-0.1" /> 12</g> 13</svg>