From 1b5ce8d3c27d3a185ffa99fb1fa364fe601f2e21 Mon Sep 17 00:00:00 2001 From: Florian Festi Date: Sat, 30 Nov 2013 17:42:30 +0100 Subject: [PATCH] typetray.py : fix params --- typetray.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/typetray.py b/typetray.py index 9aaeb29..1d67353 100755 --- a/typetray.py +++ b/typetray.py @@ -131,7 +131,11 @@ thickness=4.0 dx = (x-thickness)/nx-thickness dy = (y-thickness)/ny-thickness -b = TypeTray([dx]*nx, [120, 300-3*thickness-120], 78-thickness, 40, thickness=thickness) +sx = [dx] * nx +#sy = [dy] * ny +sy = [120, 300-3*thickness-120] + +b = TypeTray(sx, sy, 78-thickness, 40, thickness=thickness, burn=0.1) b.edges["f"].settings.setValues(b.thickness, space=3, finger=3, surroundingspaces=0.5) b.render()