mirror of
https://github.com/BelfrySCAD/BOSL2.git
synced 2025-01-04 03:09:45 +00:00
Changed dncube() to downcube() for consistency.
This commit is contained in:
parent
97cca892d3
commit
783c70a417
1 changed files with 1 additions and 1 deletions
|
@ -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.
|
||||
|
|
Loading…
Reference in a new issue