Add uniform spacing, deepen sign slot
This commit is contained in:
parent
75cfe1d019
commit
b33f4fef06
@ -29,16 +29,15 @@ module base() {
|
|||||||
|
|
||||||
module beaker(){
|
module beaker(){
|
||||||
union() {
|
union() {
|
||||||
// beaker
|
// want to make the beaker lower? decrese y in translate below
|
||||||
// want to beaker? lower the y in translate
|
translate([0,60,0]) union(){
|
||||||
translate([0,70,0]) union(){
|
// cutout for the sign
|
||||||
difference() {
|
difference() {
|
||||||
square(w);
|
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 beaker bottom circle to an ellips
|
||||||
// resizes the circle to an ellips
|
translate([w/2,0,0]) resize([w,30]) circle(d=w,false);
|
||||||
resize([w,30]) circle(d=w,false);
|
|
||||||
};
|
};
|
||||||
|
|
||||||
// beaker base
|
// beaker base
|
||||||
@ -48,7 +47,7 @@ module beaker(){
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
// vertical cutouts for the trophy
|
||||||
difference(){
|
difference(){
|
||||||
beaker();
|
beaker();
|
||||||
translate([w/2-t/2,0,0]) color("green") square([t,75]);
|
translate([w/2-t/2,0,0]) color("green") square([t,75]);
|
||||||
|
Loading…
Reference in New Issue
Block a user