Get roundness to the bottom using chopping module

This commit is contained in:
Remi Rampin 2024-04-02 17:52:50 -04:00
parent 60f8e5d831
commit ba0877f43c
1 changed files with 5 additions and 2 deletions

View File

@ -88,8 +88,11 @@ module bottom() {
half_sphere(d = full_diameter); half_sphere(d = full_diameter);
} }
scale([1, 1, 0.2]) rotate([0, -90, 0])
half_sphere(d = diameter); chop_off(full_diameter / 2 * bottom_roundness_percent / 100 - thickness, thickness) {
rotate([0, 90, 0])
half_sphere(d = diameter);
}
} }
} }