space planets better

This commit is contained in:
ajuvercr 2020-03-29 06:50:42 +02:00
parent 005f7b5dc7
commit bfd068410c
2 changed files with 3 additions and 3 deletions

View file

@ -37,8 +37,8 @@
const planet = {
"name": parameters[i][j]["name"],
"ship_count": parseInt(parameters[i][j]["shipCount"]),
"x": r_j,
"y": r_i
"x": r_j * 2.5,
"y": r_i * 2.5
};
if (parameters[i][j]["colour"] !== 0) {

View file

@ -1,7 +1,7 @@
<svg preserveAspectRatio="none" viewBox="{{ planets | calc_viewbox}}" xmlns="http://www.w3.org/2000/svg" fill="grey">
{% for planet in planets -%}
<circle cx="{{ planet.x }}" cy="{{ planet.y }}" r="0.5" fill="{% if planet.owner %}{{planet.owner | get_colour}}{% else %}grey{%endif%}"/>
<circle cx="{{ planet.x }}" cy="{{ planet.y }}" r="1" fill="{% if planet.owner %}{{planet.owner | get_colour}}{% else %}grey{%endif%}"/>
{# <text x="{{planet.x}}" y="{{planet.y + 2}}" class="small" dominant-baseline="middle" text-anchor="middle">{{planet.name}}</text> #}
{% endfor -%}
</svg>

Before

Width:  |  Height:  |  Size: 451 B

After

Width:  |  Height:  |  Size: 449 B