Fix bottom roundness

This commit is contained in:
Remi Rampin 2024-04-02 17:41:16 -04:00
parent a85a93a9a9
commit 60f8e5d831
1 changed files with 10 additions and 9 deletions

View File

@ -80,12 +80,17 @@ module body(h, fn = 20) {
module bottom() { module bottom() {
full_diameter = (diameter + thickness * 2) + cut_depth * 2; full_diameter = (diameter + thickness * 2) + cut_depth * 2;
difference() {
intersection() { intersection() {
translate([0, 0, -full_diameter / 2 * bottom_roundness_percent / 100]) translate([0, 0, -full_diameter / 2 * bottom_roundness_percent / 100])
body(full_diameter / 2 * bottom_roundness_percent / 100); body(full_diameter / 2 * bottom_roundness_percent / 100);
half_sphere(d = full_diameter); half_sphere(d = full_diameter);
} }
scale([1, 1, 0.2])
half_sphere(d = diameter);
}
} }
// The planter // The planter
@ -95,11 +100,7 @@ module planter() {
difference() { difference() {
body(height); body(height);
translate([0, 0, -1]) cylinder(d = diameter, h = height + 1);
cylinder(d = diameter, h = height + 2);
scale([1, 1, 0.2])
half_sphere(d = diameter);
} }
bottom(); bottom();