Does pyGame do 3d?
Does pyGame do 3d? I can't seem to find the answer to this question anywhere. I realise that you have to use pyOpenGL or something similar to do openGL stuff, but I was wondering if its possible to do very basic 3d graphics without any other dependencies. 9 Answers 9 No, Pygame is a wrapper for SDL, which is a 2D api. Pygame doesn't provide any 3D capability and probably never will. 3D libraries for Python include Panda3D and DirectPython, although they are probably quite complex to use, especially the latter. What is wrong about this? Pygame does not do 3d. PyOpenGL does 3d. Re-read his question. – Kylotan Sep 23 '11 at 12:06 Yes it does I am currently writing a 3D game. And I'm not even using OpenGL. I am usi...