From 3cc3b882ee477397a752433dc56d5615e034e5b3 Mon Sep 17 00:00:00 2001 From: Elmom Date: Sat, 8 Jan 2011 12:45:14 +0200 Subject: [PATCH] Fixed an insignificant typo --- shapes.scad | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shapes.scad b/shapes.scad index d41ba83..8992543 100644 --- a/shapes.scad +++ b/shapes.scad @@ -61,7 +61,7 @@ module egg_outline(width=5, length=7){ union(){ difference(){ ellipse(width, 2*length-width, center=true); - translate([0, length/2, 0]) square(length, width, center=true); + translate([0, length/2, 0]) square(length, center=true); } circle(r=width/2, center=true); }