aboutsummaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorDimitri Sokolyuk <demon@dim13.org>2015-05-14 20:10:02 +0200
committerDimitri Sokolyuk <demon@dim13.org>2015-05-14 20:10:02 +0200
commitd5d7d91ccbc70bd68c9c2f218505af6b74fbb7a8 (patch)
tree08dcc2c6043b7ff6e65cc90580f7f44222a22182 /main.go
parent30913cc232c7bd22dbd34e06bff137ab48218cb6 (diff)
Normalize and scale
Diffstat (limited to 'main.go')
-rw-r--r--main.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/main.go b/main.go
index 38ca8d8..6492d3c 100644
--- a/main.go
+++ b/main.go
@@ -36,8 +36,7 @@ func main() {
m := getMap("data/" + v)
for k, gl := range fnt.Select(m) {
- w, h := gl.Max()
- fmt.Println(string(k), gl.Width(), w, h, gl)
+ fmt.Println(string(k), gl)
}
}
}