mirror of
https://github.com/JustinSDK/dotSCAD.git
synced 2025-08-13 18:24:28 +02:00
refactor
This commit is contained in:
@@ -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]
|
||||||
];
|
];
|
Reference in New Issue
Block a user