WIP: la cata (je n'arrive pas à dessiner cette f.. matrice !
This commit is contained in:
parent
d56840e5a3
commit
3a29f20df7
|
@ -365,9 +365,9 @@ static bool compute_space_3D (long x,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
for (int u = 0; u < y; u ++){
|
for (int u = 0; u < z; u ++){
|
||||||
for (int w = 0; w < z; w ++){
|
for (int w = 0; w < y; w ++){
|
||||||
calcul = step_z * w + step_y * u;
|
calcul = step_y * w + step_z * u;
|
||||||
*(lines_origin + lines_buffer_size) = calcul; lines_buffer_size += 1;
|
*(lines_origin + lines_buffer_size) = calcul; lines_buffer_size += 1;
|
||||||
*(lines_origin + lines_buffer_size) = calcul + step_x * (x - 1); lines_buffer_size += 1;
|
*(lines_origin + lines_buffer_size) = calcul + step_x * (x - 1); lines_buffer_size += 1;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue