Changed dncube() to downcube() for consistency.

This commit is contained in:
Revar Desmera 2019-01-29 11:09:32 -08:00
parent 97cca892d3
commit 783c70a417

View file

@ -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.