import xml.etree.ElementTree as ET
ET.Element('circle', cx=x, cy=y, **kwargs)
SCALE = 0.25
glimpse.svg.svg(
glimpse.svg.image(width=width, height=height, transform=f'matrix({SCALE} 0 0 {SCALE} 0 0)'),
ET.Element('circle', cx=uv * SCALE, cy=uv * SCALE),
width=str(width * SCALE),
height=str(height * SCALE)
)
<circle>element creator: