I just want to sort of clarify for example could I somehow stack a few 2D arrays into an image?
array1=[[0,0,0,0,0]
[0,7.6,7,7.2,0]
[0,7.6,7,0,0]
[0,0,0,0,0]]
array2=[[0,0,0,0,0]
[0,7.6,7,7.2,0]
[0,7.6,7,0,0]
[0,0,0,0,0]]
And then see them in 3D space such as the cube example at link
I haven't really tried much other than trying to make other things using the geeks for geeks code. So any direction at all would be appreciated.