-
Notifications
You must be signed in to change notification settings - Fork 171
/
snappy_logo_parts.scad
51 lines (41 loc) · 974 Bytes
/
snappy_logo_parts.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
include <config.scad>
use <GDMUtils.scad>
use <joiners.scad>
$fa = 2;
$fs = 1.5;
module snappy_logo() {
logo_text = "Snappy III";
font = "Georgia:style=Bold";
up(3/2) {
xrot(180) {
difference() {
cube([rail_length-8, rail_height, 3], center=true);
linear_extrude(height=4, convexity=10) {
fwd(2) xscale(0.85) text(text=logo_text, font=font, size=19, halign="center", valign="center");
}
xspread(rail_length-8) {
yspread(rail_height) {
yscale(1.5) chamfer_mask_z(l=5, chamfer=8);
}
}
}
}
}
up(10) {
xspread(extruder_length-30) {
difference() {
xrot(90) half_joiner(h=rail_height/2, w=joiner_width, l=8, a=joiner_angle);
xspread(joiner_width) {
yspread(rail_height/2) {
chamfer_mask_z(l=30, chamfer=joiner_width/3);
}
}
}
}
}
}
module snappy_logo_parts() { // make me
snappy_logo();
}
snappy_logo_parts();
// vim: noexpandtab tabstop=4 shiftwidth=4 softtabstop=4 nowrap