Compare commits
2 Commits
trunk
...
inplace-te
Author | SHA1 | Date |
---|---|---|
Remi Rampin | 0fc2f972b3 | |
Remi Rampin | 26f50ee87d |
|
@ -14,7 +14,7 @@ funnel_size = 1;
|
|||
|
||||
part = 0;
|
||||
|
||||
part_sep = 0.2;
|
||||
part_sep = 0.5;
|
||||
|
||||
module _end_of_customizer() {}
|
||||
|
||||
|
@ -86,8 +86,13 @@ module bottom_part() {
|
|||
|
||||
if(part == 0 || part == 1)
|
||||
color("#dd08")
|
||||
intersection() {
|
||||
bottom();
|
||||
|
||||
translate([0, 0, -1])
|
||||
cylinder(d = 12, h = 5);
|
||||
}
|
||||
|
||||
module top() {
|
||||
for(i = [0:5]) {
|
||||
rotate([0, 0, i / 6 * 360])
|
||||
|
@ -130,8 +135,13 @@ module top_part_hollow() {
|
|||
if(part == 0 || part == 2)
|
||||
color("#4d48")
|
||||
translate([0, 0, bottom_height + part_sep])
|
||||
intersection() {
|
||||
top();
|
||||
|
||||
translate([0, 0, -4])
|
||||
cylinder(d = 12, h = 5);
|
||||
}
|
||||
|
||||
module connection(hole) {
|
||||
sep_hole = hole?part_sep:0;
|
||||
sep_screw = hole?0:part_sep;
|
||||
|
|
Loading…
Reference in New Issue