1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-08-11 17:24:20 +02:00
This commit is contained in:
Justin Lin
2022-05-02 16:30:31 +08:00
parent c69f63e5d3
commit 060b0b421c

View File

@@ -17,6 +17,5 @@ function _vx_from_impl(binaries, center, invert) =
) )
[ [
for(i = height - 1; i > -1; i = i - 1) for(i = height - 1; i > -1; i = i - 1)
let(row = _vx_from_row(height - i - 1, binaries[i], width, height, center, invert)) each _vx_from_row(height - i - 1, binaries[i], width, height, center, invert)
if(row != []) each row
]; ];