mirror of
https://github.com/BelfrySCAD/BOSL2.git
synced 2024-12-29 16:29:40 +00:00
bugfix
This commit is contained in:
parent
a7f4a72d31
commit
80b25fd22a
1 changed files with 1 additions and 1 deletions
|
@ -442,7 +442,7 @@ function quantup(x,y) =
|
||||||
: _ceilall(x/y)*y;
|
: _ceilall(x/y)*y;
|
||||||
|
|
||||||
function _ceilall(data) =
|
function _ceilall(data) =
|
||||||
[for(x=data) is_list(x) ? ceilall(x) : ceil(x)];
|
[for(x=data) is_list(x) ? _ceilall(x) : ceil(x)];
|
||||||
|
|
||||||
|
|
||||||
// Section: Constraints and Modulos
|
// Section: Constraints and Modulos
|
||||||
|
|
Loading…
Reference in a new issue