In my day job as a PhD student, I do geological modeling. In my spare time (mainly for fun), I am learning Python and trying to write a simple program to view 3D geocellular models.

The geocellular model is just a 3D grid where every grid cell has some value (as shown in the right figure). So, I would want my viewer to be able to display a 3D grid model like the picture on the right side. As well, I would like it to be able to display cross sections through the model in the x, y and z directions (this is shown in the left figure).
I would also want the models to be able to rotate around all three axes and zoom in and out.
I've done some preliminary investigation (mainly here: http://www.vrplumber.com/py3d.py?category=science) and it seems like VisVis and VTK are two potential options. I am trying to use wxPython for the main GUI and it looks like both options will work with wxPython as far as I can tell.
Questions:
1) Am I right when I say that I think VisVis and VTK would work for what I want? Is one preferable to the other?
2) Which of these two options would be the easiest to implement?
3) Is there another option that I should consider?
Keep in mind that I'm newish to Python and very new to wxPython.
(The data and data-format-handling code (the