Add uniform spacing, deepen sign slot

This commit is contained in:
Artur Kerge 2024-07-27 12:34:50 +03:00
parent 75cfe1d019
commit b33f4fef06
2 changed files with 45 additions and 46 deletions

View File

@ -29,16 +29,15 @@ module base() {
module beaker(){
union() {
// beaker
// want to beaker? lower the y in translate
translate([0,70,0]) union(){
// want to make the beaker lower? decrese y in translate below
translate([0,60,0]) union(){
// cutout for the sign
difference() {
square(w);
translate([0,w/4.5,0]) color("red") square([2,42]);
translate([0,w/4.5,0]) color("red") square([t,42]);
}
translate([w/2,0,0])
// resizes the circle to an ellips
resize([w,30]) circle(d=w,false);
// resizes the beaker bottom circle to an ellips
translate([w/2,0,0]) resize([w,30]) circle(d=w,false);
};
// beaker base
@ -48,7 +47,7 @@ module beaker(){
}
}
}
// vertical cutouts for the trophy
difference(){
beaker();
translate([w/2-t/2,0,0]) color("green") square([t,75]);