projects
/
retroray
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
picking and brute force ray intersections
[retroray]
/
tools
/
procdata
1
#!/bin/sh
2
3
genglyphmap()
4
{
5
echo "generate glyphmap: $1 -> $2"
6
font2glyphmap -size $3 -padding 5 -range $4 -o $2 $1
7
}
8
9
genglyphmap data/src/sans.ttf data/uifont12.gmp 12 32-128
10
11
exit 0