-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLetterBlock.scad
35 lines (31 loc) · 1.16 KB
/
LetterBlock.scad
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
// LetterBlock.scad - Basic usage of text() and linear_extrude()
// Module instantiation
LetterBlock("M");
// Module definition.
// size=30 defines an optional parameter with a default value.
module LetterBlock(letter, size=30) {
difference() {
translate([0,0,size/4]) cube([size,size,size/2], center=true);
translate([0,0,size/6]) {
// convexity is needed for correct preview
// since characters can be highly concave
linear_extrude(height=size, convexity=4)
text(letter,
size=size*22/30,
font="Tahoma",
halign="center",
valign="center");
}
}
}
echo(version=version());
// Written by Marius Kintel <[email protected]>
//
// To the extent possible under law, the author(s) have dedicated all
// copyright and related and neighboring rights to this software to the
// public domain worldwide. This software is distributed without any
// warranty.
//
// You should have received a copy of the CC0 Public Domain
// Dedication along with this software.
// If not, see <http://creativecommons.org/publicdomain/zero/1.0/>.