Test print connection area only

This commit is contained in:
Remi Rampin 2024-03-27 18:49:56 -04:00
parent 3a99837e24
commit 26f50ee87d
1 changed files with 12 additions and 2 deletions

View File

@ -86,8 +86,13 @@ module bottom_part() {
if(part == 0 || part == 1) if(part == 0 || part == 1)
color("#dd08") color("#dd08")
intersection() {
bottom(); bottom();
translate([0, 0, -1])
cylinder(d = 12, h = 5);
}
module top() { module top() {
for(i = [0:5]) { for(i = [0:5]) {
rotate([0, 0, i / 6 * 360]) rotate([0, 0, i / 6 * 360])
@ -130,8 +135,13 @@ module top_part_hollow() {
if(part == 0 || part == 2) if(part == 0 || part == 2)
color("#4d48") color("#4d48")
translate([0, 0, bottom_height + part_sep]) translate([0, 0, bottom_height + part_sep])
intersection() {
top(); top();
translate([0, 0, -4])
cylinder(d = 12, h = 5);
}
module connection(hole) { module connection(hole) {
sep_hole = hole?part_sep:0; sep_hole = hole?part_sep:0;
sep_screw = hole?0:part_sep; sep_screw = hole?0:part_sep;