1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-09-25 13:59:04 +02:00

support 3d

This commit is contained in:
Justin Lin
2020-02-23 09:54:06 +08:00
parent aee7794fd2
commit 4a2083d15b

View File

@@ -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);