vote up 1 vote down star
2

I want to create a very basic 3D modeling tool. The application is supposed to be windowed and will need to respond to mouse click and drag events in the 3D viewport.

I've decided on wxPython for the actual window since I'm fairly familiar with it already. However, I need to produce an OpenGL viewport that can respond to the various mouse events. It wouldn't hurt to have some convenience math in place for converting the 2D mouse positions in "camera space" into world space coordinates to make selection tasks easier.

I'm looking for recommendations on which modules I should be looking at.

flag

3 Answers

vote up 3 vote down check

Any reason you wouldn't use wx's GLCanvas? Here's an example that draws a sphere.

link|flag
vote up 1 vote down

I'm not aware of any boxed up modules which provide that functionality, but you can take some inspiration from Blender 3D, which has all of the features you described: its a 3D modeling tool, its written in Python, has an OpenGL viewport which responds to mouse events, and its open source.

You can probably take inspiration from Blender and apply it your own projects.

link|flag
Blender is such a large project, I'd imagine they probably developed their own internal libraries, something I don't want to rely on. – Soviut Jan 4 '09 at 21:10
vote up 2 vote down

As a very basic 3D modelling tool I'd recommend VPython.

link|flag
The integration into wxPython is what made me choose the other answer. VPython looks compelling though, especially since it has built in mouse support and convenience functions for translation mouse-space coordinates to 3d world space. – Soviut Jan 5 '09 at 4:43

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.