Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion alphabet_block.scad
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ http://tonybuser.com
http://creativecommons.org/licenses/by/3.0/
*/

<bitmap.scad>
include <bitmap.scad>

// change to any letter
letter = "A";
Expand Down
26 changes: 26 additions & 0 deletions alphabet_block_32.scad
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
/*
Parametric Alphabet Block
Tony Buser <tbuser@gmail.com>
http://tonybuser.com
http://creativecommons.org/licenses/by/3.0/

Adapted to use the "32" bit bitmap scad script
*/

use <bitmap_32.scad>

// change to any letter
letter = "A";

union() {
difference() {
cube(size = 20);
translate(v = [2, 2, 17]) {
cube(size = [16, 16, 5]);
}
}

translate(v = [10, 10, 15]) {
32bit_char(letter, 0.5, 5);
}
}
Loading