Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is python is a good choice as language used to implementing my first 3D model?

Tags:

python

3d

I am C/C /Java programmer, but lately I have started learn Python.

Moreover I have 3D Graphics on my studies. I have to create 3D model of my apartment, with dynamic camera. I am wondering if this is a good idea to merge this two issues, by writing this 3D model in python.

However as I said, I am a python beginner, so I don't know possibilities, which python can give me in this area. Which libraries/engine will be the best for a start?

like image 419
noisy Avatar asked Dec 20 '10 15:12

noisy


2 Answers

You can also checkout Pyglet, which is a higher-level library for using with OpenGL.

like image 52
ncuesta Avatar answered Sep 19 '22 17:09

ncuesta


IMHO C++ is a better option for 3D graphics, and you have experience in it. Though you can have a look at PyOpenGL, python bindings for OpenGl.

http://pyopengl.sourceforge.net/

like image 34
easysid Avatar answered Sep 21 '22 17:09

easysid