I'm currently using matplotlib for 3d plotting, but it seems very slow, even though the # of grid points/data is still small (300x300 non-evenly spaced grid of values). Is there a good, fast 3d plotter in Julia? Or should I use an OpenGL package if speed is an issue?
Ideally, I'd like it fast enough to do movies, but also have the ability to export the movie, and also support inline in IJulia. I'm worried that OpenGL packages can do the first, with a lot of work, but not the second, and only matplotlib can do the third. Sheehan