mirror of
https://github.com/enzet/map-machine.git
synced 2025-05-15 18:16:53 +02:00
Icon colors.
This commit is contained in:
parent
289327887c
commit
b8e68a9745
5 changed files with 96 additions and 33 deletions
BIN
doc/grid.png
BIN
doc/grid.png
Binary file not shown.
Before Width: | Height: | Size: 22 KiB After Width: | Height: | Size: 25 KiB |
BIN
doc/map.png
BIN
doc/map.png
Binary file not shown.
Before Width: | Height: | Size: 84 KiB After Width: | Height: | Size: 84 KiB |
|
@ -4,8 +4,9 @@ Author: Sergey Vartanov (me@enzet.ru).
|
|||
|
||||
import copy
|
||||
import extract_icon
|
||||
import process
|
||||
import os
|
||||
import process
|
||||
import random
|
||||
import sys
|
||||
import yaml
|
||||
|
||||
|
@ -19,16 +20,27 @@ import svg
|
|||
|
||||
icons_file_name = '../icons/icons.svg'
|
||||
icon_grid_file_name = '../icon_grid.svg'
|
||||
icon_colors_file_name = '../data/icon_colors'
|
||||
|
||||
def draw_icon(icon):
|
||||
def draw_icon(icon, color='444444'):
|
||||
output_file.write('<path d="' + icon['path'] + '" ' + \
|
||||
'style="fill:#444444;stroke:none;' + \
|
||||
'style="fill:#' + color + ';stroke:none;' + \
|
||||
'stroke-width:3;stroke-linejoin:round;" ' + \
|
||||
'transform="translate(' + icon['x'] + ',' + icon['y'] + ')" />\n')
|
||||
|
||||
|
||||
# Actions
|
||||
|
||||
icon_colors = [('FFFFFF', '444444')]
|
||||
if os.path.isfile(icon_colors_file_name):
|
||||
icon_colors_file = open(icon_colors_file_name)
|
||||
for line in icon_colors_file.read().split('\n'):
|
||||
background_color = hex(int(line[0:3]))[2:] + hex(int(line[3:6]))[2:] + \
|
||||
hex(int(line[6:9]))[2:]
|
||||
foreground_color = hex(int(line[10:13]))[2:] + hex(int(line[13:16]))[2:] + \
|
||||
hex(int(line[16:19]))[2:]
|
||||
icon_colors.append((background_color, foreground_color))
|
||||
|
||||
step = 24
|
||||
|
||||
width = step * 10
|
||||
|
@ -64,12 +76,14 @@ for element in scheme['tags']:
|
|||
if not (set([icon] + [icon2] + [icon3] + element['over_icon']) in to_draw):
|
||||
to_draw.append(set([icon] + [icon2] + [icon3] + element['over_icon']))
|
||||
|
||||
icons = []
|
||||
height = 24
|
||||
number = 0
|
||||
|
||||
icons = []
|
||||
|
||||
for icons_to_draw in to_draw:
|
||||
drawed = False
|
||||
icons.append({'xx': x - 8.0, 'yy': y - 8.0})
|
||||
for icon in icons_to_draw:
|
||||
path, xx, yy = extracter.get_path(icon)
|
||||
if path:
|
||||
|
@ -91,7 +105,12 @@ output_file = svg.SVG(open(icon_grid_file_name, 'w+'))
|
|||
output_file.begin(width, height)
|
||||
|
||||
for icon in icons:
|
||||
draw_icon(icon)
|
||||
if 'xx' in icon:
|
||||
xx, yy = icon['xx'], icon['yy']
|
||||
background_color, foreground_color = random.choice(icon_colors)
|
||||
output_file.rect(xx - 2, yy - 2, 20, 20, color=background_color)
|
||||
else:
|
||||
draw_icon(icon, foreground_color)
|
||||
|
||||
print 'Icons: ' + str(number) + '.'
|
||||
|
||||
|
|
|
@ -24,9 +24,9 @@
|
|||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="22.627417"
|
||||
inkscape:cx="58.168882"
|
||||
inkscape:cy="471.75063"
|
||||
inkscape:zoom="8"
|
||||
inkscape:cx="103.5"
|
||||
inkscape:cy="303.76451"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:document-units="px"
|
||||
showgrid="false"
|
||||
|
@ -2746,11 +2746,6 @@
|
|||
id="path4412"
|
||||
d="m 60,276 -8,8"
|
||||
style="fill:none;stroke:#d4aa00;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<path
|
||||
style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.66666675000000009;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
|
||||
d="M 56 289 C 52.145851 289 49 292.14585 49 296 C 49 299.85415 52.145851 303 56 303 C 59.854149 303 63 299.85415 63 296 C 63 292.14585 59.854149 289 56 289 z M 55 291.125 L 55 293.5625 L 53.25 291.8125 C 53.771738 291.46776 54.362536 291.254 55 291.125 z M 57 291.125 C 57.637464 291.254 58.228262 291.46776 58.75 291.8125 L 57 293.5625 L 57 291.125 z M 51.8125 293.25 L 53.5625 295 L 51.125 295 C 51.254 294.36254 51.467762 293.77174 51.8125 293.25 z M 60.1875 293.25 C 60.532238 293.77174 60.746 294.36254 60.875 295 L 58.4375 295 L 60.1875 293.25 z M 56 294.5 C 56.828427 294.5 57.5 295.17157 57.5 296 C 57.5 296.82843 56.828427 297.5 56 297.5 C 55.171573 297.5 54.5 296.82843 54.5 296 C 54.5 295.17157 55.171573 294.5 56 294.5 z M 51.125 297 L 53.5625 297 L 51.8125 298.75 C 51.467762 298.22826 51.254 297.63746 51.125 297 z M 58.4375 297 L 60.875 297 C 60.746 297.63746 60.532238 298.22826 60.1875 298.75 L 58.4375 297 z M 55 298.4375 L 55 300.875 C 54.362536 300.746 53.771738 300.53224 53.25 300.1875 L 55 298.4375 z M 57 298.4375 L 58.75 300.1875 C 58.228262 300.53224 57.637464 300.746 57 300.875 L 57 298.4375 z "
|
||||
id="buddhist"
|
||||
inkscape:label="#path4414" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="fill:#ffd5d5;fill-opacity:1;stroke:none"
|
||||
|
@ -2780,12 +2775,7 @@
|
|||
sodipodi:rx="5"
|
||||
sodipodi:ry="5"
|
||||
d="m 78,296 a 5,5 0 1 1 -10,0 5,5 0 1 1 10,0 z"
|
||||
transform="translate(-2,-17)" />
|
||||
<path
|
||||
style="fill:#000000;fill-opacity:1;stroke:none"
|
||||
d="M 72 290 C 71.834211 290 71.66239 290.01806 71.5 290.03125 C 74.02128 290.2873 76 292.41117 76 295 C 76 297.76142 73.761424 300 71 300 C 68.411165 300 66.2873 298.02128 66.03125 295.5 C 66.01806 295.66239 66 295.83421 66 296 C 66 299.31371 68.686292 302 72 302 C 75.313708 302 78 299.31371 78 296 C 78 292.68629 75.313708 290 72 290 z "
|
||||
id="muslim"
|
||||
inkscape:label="#path4443" />
|
||||
transform="translate(0.5,-17.5)" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="fill:none;stroke:#d4aa00;stroke-linecap:round"
|
||||
|
@ -3174,7 +3164,7 @@
|
|||
style="color:#000000;fill:#ffd5d5;stroke:none;stroke-width:0.30000001;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
|
||||
<path
|
||||
style="fill:#000000;fill-opacity:1;stroke:none"
|
||||
d="M 246.5 65 C 246.223 65 246 65.223 246 65.5 L 246 67 L 244 67 L 244 68 C 245.10457 68 246 68.895431 246 70 L 246 71 L 244 71 L 244 72 C 245.10457 72 246 72.895431 246 74 L 246 75 L 244 75 L 244 76 C 245.10457 76 246 76.895431 246 78 L 246 78.5 C 246 78.777 246.223 79 246.5 79 L 249.5 79 C 249.777 79 250 78.777 250 78.5 L 250 78 C 250 76.895431 250.89543 76 252 76 L 252 75 L 250 75 L 250 74 C 250 72.895431 250.89543 72 252 72 L 252 71 L 250 71 L 250 70 C 250 68.895431 250.89543 68 252 68 L 252 67 L 250 67 L 250 65.5 C 250 65.223 249.777 65 249.5 65 L 246.5 65 z M 247 67 L 249 67 L 249 69 L 247 69 L 247 67 z M 247 71 L 249 71 L 249 73 L 247 73 L 247 71 z M 247 75 L 249 75 L 249 77 L 247 77 L 247 75 z "
|
||||
d="M 246.5 65 C 246.223 65 246 65.223 246 65.5 L 246 67 L 244 67 L 244 68 C 245.10457 68 246 68.895431 246 70 L 246 71 L 244 71 L 244 72 C 245.10457 72 246 72.895431 246 74 L 246 75 L 244 75 L 244 76 C 245.10457 76 246 76.895431 246 78 L 246 78.5 C 246 78.777 246.223 79 246.5 79 L 249.5 79 C 249.777 79 250 78.777 250 78.5 L 250 78 C 250 76.895431 250.89543 76 252 76 L 252 75 L 250 75 L 250 74 C 250 72.895431 250.89543 72 252 72 L 252 71 L 250 71 L 250 70 C 250 68.895431 250.89543 68 252 68 L 252 67 L 250 67 L 250 65.5 C 250 65.223 249.777 65 249.5 65 L 246.5 65 z M 247.5 67 L 248.5 67 C 248.777 67 249 67.223 249 67.5 L 249 68.5 C 249 68.777 248.777 69 248.5 69 L 247.5 69 C 247.223 69 247 68.777 247 68.5 L 247 67.5 C 247 67.223 247.223 67 247.5 67 z M 247.5 71 L 248.5 71 C 248.777 71 249 71.223 249 71.5 L 249 72.5 C 249 72.777 248.777 73 248.5 73 L 247.5 73 C 247.223 73 247 72.777 247 72.5 L 247 71.5 C 247 71.223 247.223 71 247.5 71 z M 247.5 75 L 248.5 75 C 248.777 75 249 75.223 249 75.5 L 249 76.5 C 249 76.777 248.777 77 248.5 77 L 247.5 77 C 247.223 77 247 76.777 247 76.5 L 247 75.5 C 247 75.223 247.223 75 247.5 75 z "
|
||||
id="traffic_signals" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccc"
|
||||
|
@ -3236,16 +3226,10 @@
|
|||
y="90" />
|
||||
<path
|
||||
style="fill:none;stroke:#d4aa00;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 119.5,84.5 c 7,0 0,-7 0,0 z"
|
||||
d="m 119.5,84.5 c 0.58492,0 1.08933,0 1.5,0 1.96462,0 3,-1.5 2,-2.5 -1,-1 -3.5,-0.428917 -3.5,1.5 0,0.405993 0,0.442287 0,1 z"
|
||||
id="path3498"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3500"
|
||||
d="m 119.5,84.5 c -7,0 0,-7 0,0 z"
|
||||
style="fill:none;stroke:#d4aa00;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
sodipodi:nodetypes="csssc" />
|
||||
<path
|
||||
style="fill:#000000;fill-rule:evenodd;stroke:none"
|
||||
d="m 117.875,96.90625 c -0.10225,0.005 -0.21359,0.0087 -0.3125,0.03125 -0.39565,0.09008 -0.75357,0.316074 -1.03125,0.59375 -0.55535,0.555351 -0.87561,1.467735 -0.40625,2.25 0.42247,0.70412 1.36028,1.10981 2.875,1.1875 l 0,0.0312 1,0 0,-0.0312 c 1.51472,-0.0777 2.45253,-0.48338 2.875,-1.1875 0.46936,-0.782265 0.1491,-1.694649 -0.40625,-2.25 -0.27768,-0.277676 -0.6356,-0.503669 -1.03125,-0.59375 -0.39565,-0.09008 -0.82762,-0.04718 -1.21875,0.1875 -0.29335,0.17601 -0.52743,0.427325 -0.71875,0.78125 -0.19132,-0.353925 -0.4254,-0.60524 -0.71875,-0.78125 -0.29335,-0.17601 -0.59951,-0.233686 -0.90625,-0.21875 z m -0.0625,0.96875 c 0.0667,-0.01205 0.12277,-0.0077 0.1875,0 0.0863,0.0103 0.17213,0.04703 0.25,0.09375 0.26033,0.156197 0.55054,0.806403 0.65625,1.9375 -1.1311,-0.105712 -1.7813,-0.395922 -1.9375,-0.65625 -0.18689,-0.311485 -0.0696,-0.711601 0.25,-1.03125 0.17981,-0.179803 0.3938,-0.307602 0.59375,-0.34375 z m 3.1875,0 c 0.25892,-0.03089 0.54151,0.104012 0.78125,0.34375 0.31965,0.319649 0.43689,0.719765 0.25,1.03125 -0.1562,0.260328 -0.8064,0.550538 -1.9375,0.65625 0.10571,-1.131097 0.39592,-1.781303 0.65625,-1.9375 0.0779,-0.04672 0.16369,-0.08345 0.25,-0.09375 z M 117,102 c -1.108,0 -2,0.892 -2,2 l 0,2 4,0 0,-4 -2,0 z m 3,0 0,4 4,0 0,-2 c 0,-1.108 -0.892,-2 -2,-2 l -2,0 z m -5,5 0,2 c 0,1.108 0.892,2 2,2 l 2,0 0,-4 -4,0 z m 5,0 0,4 2,0 c 1.108,0 2,-0.892 2,-2 l 0,-2 -4,0 z"
|
||||
|
@ -3908,7 +3892,7 @@
|
|||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
style="fill:#000000;fill-opacity:1;stroke:none"
|
||||
d="M 262.5 65 C 262.223 65 262 65.223 262 65.5 L 262 67 L 260 67 L 260 68 C 261.00873 68 261.83157 68.74788 261.96875 69.71875 L 266 71 L 266 70 C 266 68.895431 266.89543 68 268 68 L 268 67 L 266 67 L 266 65.5 C 266 65.223 265.777 65 265.5 65 L 262.5 65 z M 263 67 L 265 67 L 265 69 L 263 69 L 263 67 z M 258.15625 69.53125 L 257.84375 70.46875 L 269.84375 74.46875 L 270.15625 73.53125 L 258.15625 69.53125 z M 261.5625 72.78125 C 261.82638 73.120134 262 73.537224 262 74 L 262 75 L 260 75 L 260 76 C 261.10457 76 262 76.895431 262 78 L 262 78.5 C 262 78.777 262.223 79 262.5 79 L 265.5 79 C 265.777 79 266 78.777 266 78.5 L 266 78 C 266 76.895431 266.89543 76 268 76 L 268 75 L 266 75 L 266 74.25 L 261.5625 72.78125 z M 263 75 L 265 75 L 265 77 L 263 77 L 263 75 z "
|
||||
d="M 262.5 65 C 262.223 65 262 65.223 262 65.5 L 262 67 L 260 67 L 260 68 C 261.00873 68 261.83157 68.74788 261.96875 69.71875 L 266 71 L 266 70 C 266 68.895431 266.89543 68 268 68 L 268 67 L 266 67 L 266 65.5 C 266 65.223 265.777 65 265.5 65 L 262.5 65 z M 263.5 67 L 264.5 67 C 264.777 67 265 67.223 265 67.5 L 265 68.5 C 265 68.777 264.777 69 264.5 69 L 263.5 69 C 263.223 69 263 68.777 263 68.5 L 263 67.5 C 263 67.223 263.223 67 263.5 67 z M 258.15625 69.53125 L 257.84375 70.46875 L 269.84375 74.46875 L 270.15625 73.53125 L 258.15625 69.53125 z M 261.5625 72.78125 C 261.82638 73.120134 262 73.537224 262 74 L 262 75 L 260 75 L 260 76 C 261.10457 76 262 76.895431 262 78 L 262 78.5 C 262 78.777 262.223 79 262.5 79 L 265.5 79 C 265.777 79 266 78.777 266 78.5 L 266 78 C 266 76.895431 266.89543 76 268 76 L 268 75 L 266 75 L 266 74.25 L 261.5625 72.78125 z M 263.5 75 L 264.5 75 C 264.777 75 265 75.223 265 75.5 L 265 76.5 C 265 76.777 264.777 77 264.5 77 L 263.5 77 C 263.223 77 263 76.777 263 76.5 L 263 75.5 C 263 75.223 263.223 75 263.5 75 z "
|
||||
id="no_traffic_signals" />
|
||||
<path
|
||||
style="fill:#000000;stroke:none"
|
||||
|
@ -4514,5 +4498,65 @@
|
|||
d="M 71.9375 129 C 71.697184 129.0303 71.498123 129.25779 71.5 129.5 C 71.5 130.33333 71.134234 130.87865 70.375 131.3125 C 69.615766 131.74635 68.444444 132 67 132 L 66.5 132 C 66.223 132 66 132.223 66 132.5 C 66 132.777 66.223 133 66.5 133 L 67.34375 133 L 65.78125 138 L 65.5 138 C 65.231656 138 65 138.223 65 138.5 L 65 139.5 C 65 139.777 65.231656 140 65.5 140 L 66.5 140 C 66.768344 140 67 139.777 67 139.5 L 67 138.5 C 67 138.32688 66.910054 138.18343 66.78125 138.09375 L 68.375 133 L 69.40625 133 L 68.65625 138 L 68.5 138 C 68.231656 138 68 138.223 68 138.5 L 68 139.5 C 68 139.777 68.231656 140 68.5 140 L 69.5 140 C 69.768344 140 70 139.777 70 139.5 L 70 138.5 C 70 138.27286 69.8565 138.09259 69.65625 138.03125 L 70.4375 133 L 71 133 L 71 141 L 66.5 141 C 66.223 141 66 141.223 66 141.5 C 66 141.777 66.223 142 66.5 142 L 71 142 L 73 142 L 77.5 142 C 77.777 142 78 141.777 78 141.5 C 78 141.223 77.777 141 77.5 141 L 73 141 L 73 133 L 73.5625 133 L 74.34375 138.03125 C 74.1435 138.09259 74 138.27286 74 138.5 L 74 139.5 C 74 139.777 74.231656 140 74.5 140 L 75.5 140 C 75.768344 140 76 139.777 76 139.5 L 76 138.5 C 76 138.223 75.768344 138 75.5 138 L 75.34375 138 L 74.59375 133 L 75.625 133 L 77.21875 138.09375 C 77.089946 138.18343 77 138.32688 77 138.5 L 77 139.5 C 77 139.777 77.231656 140 77.5 140 L 78.5 140 C 78.768344 140 79 139.777 79 139.5 L 79 138.5 C 79 138.223 78.768344 138 78.5 138 L 78.21875 138 L 76.65625 133 L 77.5 133 C 77.777 133 78 132.777 78 132.5 C 78 132.223 77.777 132 77.5 132 L 77 132 C 75.555556 132 74.384234 131.74635 73.625 131.3125 C 72.865766 130.87865 72.5 130.33333 72.5 129.5 C 72.5022 129.21602 72.219266 128.96452 71.9375 129 z "
|
||||
id="amusement_ride"
|
||||
inkscape:label="#path4690" />
|
||||
<path
|
||||
style="fill:#000000;fill-opacity:1;stroke:none"
|
||||
d="M 71.3125 290.03125 C 68.316796 290.3669 66 292.91467 66 296 C 66 299.31371 68.686292 302 72 302 C 75.085331 302 77.633101 299.6832 77.96875 296.6875 C 77.153677 298.34257 75.469567 299.5 73.5 299.5 C 70.738576 299.5 68.5 297.26142 68.5 294.5 C 68.5 292.53043 69.657433 290.84632 71.3125 290.03125 z "
|
||||
id="muslim"
|
||||
inkscape:label="#path4744" />
|
||||
<path
|
||||
transform="translate(47.5,-16.499974)"
|
||||
d="m 61,296 a 5,5 0 1 1 -10,0 5,5 0 1 1 10,0 z"
|
||||
sodipodi:ry="5"
|
||||
sodipodi:rx="5"
|
||||
sodipodi:cy="296"
|
||||
sodipodi:cx="56"
|
||||
id="path4749"
|
||||
style="fill:none;stroke:#d4aa00;stroke-width:0.99999994;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
sodipodi:type="arc" />
|
||||
<rect
|
||||
ry="0.5"
|
||||
rx="0.5"
|
||||
y="274"
|
||||
x="103"
|
||||
height="11"
|
||||
width="1"
|
||||
id="rect4751"
|
||||
style="fill:#808080;stroke:none" />
|
||||
<rect
|
||||
ry="0.5"
|
||||
rx="0.5"
|
||||
y="279"
|
||||
x="98"
|
||||
height="1"
|
||||
width="11"
|
||||
id="rect4753"
|
||||
style="fill:#808080;fill-opacity:1;stroke:none" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4755"
|
||||
d="m 100,276 7,7"
|
||||
style="fill:none;stroke:#d4aa00;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
style="fill:none;stroke:#d4aa00;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 107,276 -7,7"
|
||||
id="path4757"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
transform="matrix(0.66666661,0,0,0.66666635,65.833336,92.50009)"
|
||||
d="m 58,280.5 a 1.5,1.5 0 1 1 -3,0 1.5,1.5 0 1 1 3,0 z"
|
||||
sodipodi:ry="1.5"
|
||||
sodipodi:rx="1.5"
|
||||
sodipodi:cy="280.5"
|
||||
sodipodi:cx="56.5"
|
||||
id="path4759"
|
||||
style="fill:#ffd5d5;fill-opacity:1;stroke:none"
|
||||
sodipodi:type="arc" />
|
||||
<path
|
||||
style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.99999994000000003;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
|
||||
d="M 103.5 291 C 100.46836 291 98 293.46836 98 296.5 C 98 299.53164 100.46836 302 103.5 302 C 106.53164 302 109 299.53164 109 296.5 C 109 293.46836 106.53164 291 103.5 291 z M 103 292.0625 L 103 295.3125 L 100.6875 293 C 101.33275 292.48387 102.13313 292.15947 103 292.0625 z M 104 292.0625 C 104.86687 292.15947 105.66725 292.48387 106.3125 293 L 104 295.3125 L 104 292.0625 z M 100 293.6875 L 102.3125 296 L 99.0625 296 C 99.15947 295.13313 99.483866 294.33275 100 293.6875 z M 107 293.6875 C 107.51613 294.33275 107.84053 295.13313 107.9375 296 L 104.6875 296 L 107 293.6875 z M 103.5 295.5 C 104.05228 295.5 104.5 295.94772 104.5 296.5 C 104.5 297.05228 104.05228 297.5 103.5 297.5 C 102.94772 297.5 102.5 297.05228 102.5 296.5 C 102.5 295.94772 102.94772 295.5 103.5 295.5 z M 99.0625 297 L 102.3125 297 L 100 299.3125 C 99.483866 298.66725 99.15947 297.86687 99.0625 297 z M 104.6875 297 L 107.9375 297 C 107.84053 297.86687 107.51613 298.66725 107 299.3125 L 104.6875 297 z M 103 297.6875 L 103 300.9375 C 102.13313 300.84053 101.33275 300.51613 100.6875 300 L 103 297.6875 z M 104 297.6875 L 106.3125 300 C 105.66725 300.51613 104.86687 300.84053 104 300.9375 L 104 297.6875 z "
|
||||
id="buddhist"
|
||||
inkscape:label="#path4761" />
|
||||
</g>
|
||||
</svg>
|
||||
|
|
Before Width: | Height: | Size: 236 KiB After Width: | Height: | Size: 238 KiB |
|
@ -1,4 +1,4 @@
|
|||
edit tags.yml
|
||||
vs mapper.py
|
||||
tabe icons.html
|
||||
vs test.py
|
||||
edit engine/process.py
|
||||
vs engine/mapper.py
|
||||
tabe data/tags.yml
|
||||
vs engine/test.py
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue