abouttreesummaryrefslogcommitdiff
path: root/srcs/special_font/build.pe
blob: 962917f1f0eefa304aa7c3425ab0116ff5c1d80f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# The special font is used for the symbols of some keys. It is built from SVG
# files, one for each glyph.
New()

# Imports glyphs, file name is position in the font.
i = 1
while (i < $argc)
  Select(Strtol($argv[i]:t:r, 16))
  Import($argv[i], 0, 0, 4.0, 0.1)
  AutoWidth(150)
  i++
endloop

Generate("result.ttf")