From 783c70a417e47ee431f0985382d3cfadd1eeafbb Mon Sep 17 00:00:00 2001 From: Revar Desmera Date: Tue, 29 Jan 2019 11:09:32 -0800 Subject: [PATCH] Changed dncube() to downcube() for consistency. --- shapes.scad | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shapes.scad b/shapes.scad index 1ff9788..111a552 100644 --- a/shapes.scad +++ b/shapes.scad @@ -79,7 +79,7 @@ module upcube(size=[1,1,1]) {l=len(size)==undef? size : size[2]; up(l/2) cube(si // Makes a cube that has its top face centered at the origin. -module dncube(size=[1,1,1]) {l=len(size)==undef? size : size[2]; down(l/2) cube(size, center=true);} +module downcube(size=[1,1,1]) {l=len(size)==undef? size : size[2]; down(l/2) cube(size, center=true);} // Makes a cube with chamfered edges.