-
Notifications
You must be signed in to change notification settings - Fork 0
/
model.scad
48 lines (41 loc) · 943 Bytes
/
model.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
include <config.scad>;
use <snap-joint.scad>;
use <snap-nut.scad>;
module test_joint()
{
difference()
{
y = snap_joint_height - snap_joint_feather_hook_height - material_z;
d = 10;
translate([0, y/2 - d/2, 0])
cube([
snap_joint_width + snap_joint_feather_hook_width + 10,
y + d,
material_z
], center=true);
translate([0, y/2, 0])
cube([
snap_joint_width + 2,
y + nothing,
material_z + nothing
], center=true);
}
snap_joint();
}
module test_nut()
{
rotate([90, 0, 0])
difference()
{
cube([
snap_joint_width + snap_joint_feather_hook_width + 10,
material_z,
material_z + 10
], center=true);
snap_nut_cutout();
}
}
test_joint();
translate([0, snap_joint_height+5, 0])
rotate([90, 0, 0])
test_nut();