I am a visual person, if I can visualize something, it often makes more sense to me.
Is there an easy way to visualize data in 3D for easy visualization? What I really would like to do is the following:
I have an Int32's 3D array:
Int32[,,] data = new Int32[256,256,256];
I fill this array with data and basically would like to do it in three-dimensional space. X, Y and Z and place the point where the data is greater than 0. Basic
The ability to change the viewing angle will be a bonus, but not significant.
I was not looking for 3D rendering to use any of the real 3D engines out there, so the simpler the better.
Any help pointers would be enjoyable.
thanks
c # 3d
Gineer
source share