Fixed bug closing holes in cap

This commit is contained in:
2026-01-04 23:57:40 +01:00
parent 540d2c96b1
commit be249d2e14

View File

@@ -115,6 +115,8 @@ module box() {
// Upper cap lip // Upper cap lip
module lip() { module lip() {
difference() {
union() {
// Lip support // Lip support
translate([0, 0, box_cut_height + 5]) { translate([0, 0, box_cut_height + 5]) {
intersection() { intersection() {
@@ -127,9 +129,7 @@ module lip() {
} }
} }
// Chamfered lip // Chamfered lip
difference() {
for (i = [0:10]) { for (i = [0:10]) {
translate([0, 0, box_cut_height - i * 0.5]) { translate([0, 0, box_cut_height - i * 0.5]) {
intersection() { intersection() {
@@ -145,6 +145,7 @@ module lip() {
} }
} }
} }
}
// Leave space for screws standoffs near curved edges // Leave space for screws standoffs near curved edges