Displaying a cube with matplotlib

Hi all, I have discretized the surface of a cube with a

    > number of nodes. The coordinates of these nodes are stored
    > in a two dimensional array x. shape(x) (3, 96)

    > Each column refers to a node while the rows contain the
    > x,y,z coordinates. Is it possible to visualize such a
    > three-dimensional grid with matplotlib ?

Hey Nils,

You could plot these as a 3D scatter plot using mplot3 which is a
matplotlib 3D extensions module

  http://www.scipy.org/Cookbook/Matplotlib/mplot3D

but you may be better off with a dedicated 3D lib such as VTK/Mayavi2
depending on your requirements.

JDH