Set the order of the cube axis to be in XYZ or not (by default XYZ is choosen)
The XYZ order means that x is traversed first, then y, then z.
Recall that XYZ order means x variation first.
The loop is therefore for(z) { for(y) { for(x) {} } } leading to coordinates:
0 0 0
1 0 0
2 0 0
0 1 0
1 1 0
2 1 0
...
When the order is not XYZ, thz z axis is traversed first, then y, then x.
The loop is therefore for(x) { for(y) { for(z) {} } } leading to coordinates:
0 0 0
0 0 1
0 0 2
0 1 0
0 1 1
0 1 2
...
Set the order of the cube axis to be in XYZ or not (by default XYZ is choosen) The XYZ order means that x is traversed first, then y, then z. Recall that XYZ order means x variation first. The loop is therefore for(z) { for(y) { for(x) {} } } leading to coordinates: 0 0 0 1 0 0 2 0 0 0 1 0 1 1 0 2 1 0 ...
When the order is not XYZ, thz z axis is traversed first, then y, then x. The loop is therefore for(x) { for(y) { for(z) {} } } leading to coordinates: 0 0 0 0 0 1 0 0 2 0 1 0 0 1 1 0 1 2 ...
By default the order is XYZ.