cleanup the scad

This commit is contained in:
Mirek Kratochvil 2017-09-12 09:38:43 +02:00
parent 3f1ff2332b
commit 84a3970245

View file

@ -1,17 +1,22 @@
// text_on_cube.scad - Example for text() usage in OpenSCAD
echo(version=version()); // No license, but send me a hello if you use this for some good purpose.
// -- Mirek Kratochvil <exa.exa@gmail.com>
//font = "URW Bookman L"; //TODO: round corners?
font = "Monospace";
font = "Monospace"; //URW Bookman L looks nicely here as well
font2 = "Droid Sans Mono"; font2 = "Droid Sans Mono";
//TODO: kulaty rohy
//inch-sized tiles look imperial.
tilesize=25.4; tilesize=25.4;
//you might like them a bit larger if you want to use this in nature.
//distance between tiles
off=tilesize*1.05; off=tilesize*1.05;
//height 1/8"
tileheight=tilesize/8; tileheight=tilesize/8;
//this produces one tile
module tilec(letter, x, y, c) { module tilec(letter, x, y, c) {
translate([x*off,(6-y)*off,0]) { translate([x*off,(6-y)*off,0]) {
difference() { difference() {
@ -37,7 +42,6 @@ module tilec(letter, x, y, c) {
} }
//tiles //tiles
module tile(letter,x,y) { module tile(letter,x,y) {
tilec(letter,x,y,"darkgray"); tilec(letter,x,y,"darkgray");
} }
@ -92,7 +96,6 @@ tile("'",4,6);
tile("(",5,6); tile("(",5,6);
tile(")",6,6); tile(")",6,6);
//the token //the token
translate([-off/2,off/2,0]) { translate([-off/2,off/2,0]) {
color("red") difference() { color("red") difference() {