mirror of
https://github.com/encounter/decomp.dev.git
synced 2026-07-10 03:18:48 -07:00
8 lines
386 B
XML
8 lines
386 B
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<svg viewBox="0 0 {{ w }} {{ h }}" xmlns="http://www.w3.org/2000/svg">
|
|
<style>.unit { stroke: #000; stroke-width: 1; }</style>
|
|
{% for unit in units %}
|
|
<rect class="unit" width="{{ unit.w * 100.0 }}%" height="{{ unit.h * 100.0 }}%" x="{{ unit.x * 100.0 }}%" y="{{ unit.y * 100.0 }}%" fill="{{ unit.color }}" />
|
|
{% endfor %}
|
|
</svg>
|