mirror of
https://github.com/JustinSDK/dotSCAD.git
synced 2025-09-25 13:59:04 +02:00
support 3d
This commit is contained in:
@@ -1,2 +1,2 @@
|
|||||||
function _sum(lt, leng, i = 0) =
|
function _sum(lt, leng, i = 0) =
|
||||||
i == leng ? [0, 0] : lt[i] + _sum(lt, leng, i + 1);
|
i == leng ? [0, 0, 0] : lt[i] + _sum(lt, leng, i + 1);
|
||||||
|
Reference in New Issue
Block a user