From 5c368857e796149d2e316a1344837751587a8c18 Mon Sep 17 00:00:00 2001 From: slgotting Date: Sat, 3 Feb 2024 11:00:04 -0500 Subject: [PATCH] egg fix --- regular_shapes.scad | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/regular_shapes.scad b/regular_shapes.scad index c3acbcbf..2d8f77c9 100644 --- a/regular_shapes.scad +++ b/regular_shapes.scad @@ -253,7 +253,7 @@ module egg(width, length){ rotate_extrude() difference(){ egg_outline(width, length); - translate([-length, 0, 0]) cube(2*length, center=true); + translate([-length, 0, 0]) square(2*length, center=true); } }