-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathclaw-debug.scad
77 lines (45 loc) · 1.3 KB
/
claw-debug.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
/*
Polaroid 600 / Polaroid 600se Adapter
Refactor of first try
This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License.
https://creativecommons.org/licenses/by-nc-sa/3.0/
This is a test to see if the corner fits properly.
*/
include <lib/functions.scad>
include <lib/base.scad> // Back base
include <lib/seal.scad> // Light seal
include <lib/claws.scad> // Claws
include <lib/misc.scad> // misc parts
/* Debug seal */
module debug_corner() {
debug = 1;
difference() {
union() {
color( "green", 1.0 ){
seal();
}
color( "blue", 1.0 ){
default_base();
}
color( "red", 1.0 ){
//nubs();
}
color( "yellow", 1.0 ){
}
claws();
}
/* block out the rest */
if (debug==1){
translate([-60,-40,10]){
cube([40,40,20], center=true);
}
translate([-60,40,10]){
cube([40,40,20], center=true);
}
translate([50,00,10]){
cube([190,150,20], center=true);
}
}
}
}
debug_corner();