-
Notifications
You must be signed in to change notification settings - Fork 0
/
kitchen_hook.scad
46 lines (44 loc) · 1.16 KB
/
kitchen_hook.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
width=6.15; // mm
$fn=60;
linear_extrude(width) {
difference() {
translate([width / 2, width / 2]) {
minkowski() {
square([width * 2, width * 5]);
circle(d=width);
}
}
translate([0, width * 2]) {
square([width * 2, width]);
}
translate([width, width]) {
square([width, width * 2]);
}
}
}
translate([1.5 * width, 4.5 * width, 0]) {
cylinder(d=width, h = width * 3);
translate([0, 0, width * 3]) {
sphere(d=width * 2);
}
}
translate([2 * width,5 * width,-2 * width]) {
rotate([0,-90,90]) {
linear_extrude(width) {
difference() {
translate([width / 2, width / 2]) {
minkowski() {
square([width * 2, width * 1]);
circle(d=width);
}
}
translate([0, width * 2]) {
square([width * 2, width]);
}
translate([width, width]) {
square([width, width * 2]);
}
}
}
}
}