This repository has been archived on 2023-03-25. You can view files and clone it, but cannot push or open issues or pull requests.
mightyscape-1.1-deprecated/extensions/fablabchemnitz/papercraft/openjscad/node_modules/@jscad/openscad-openjscad-translator/tests/conditional_and_iterator_functions/forLoopEx1.scad

5 lines
115 B
OpenSCAD

for (z = [-1, 1]) // two iterations, z = -1, z = 1
{
translate([0, 0, z])
cube(size = 1, center = false);
}