1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-08-13 18:24:28 +02: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) = function __reverse(vt) =
let(leng = len(vt)) let(to = len(vt) - 1)
[ [
for(i = [0:leng - 1]) for(i = [0:to])
vt[leng - 1 - i] vt[to - i]
]; ];