1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-02-24 09:33:26 +01:00
This commit is contained in:
Justin Lin 2019-06-12 08:23:40 +08:00
parent e1985e85b0
commit 9a2e66f999

View File

@ -1,6 +1,6 @@
function __reverse(vt) =
let(leng = len(vt))
let(to = len(vt) - 1)
[
for(i = [0:leng - 1])
vt[leng - 1 - i]
for(i = [0:to])
vt[to - i]
];