[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.python

Python and 3D

Eric von Horst

3/15/2008 8:09:00 PM

Hi,

I am looking for Python modules that allow you to manipulate 3D
objects, more specifically Alias Wavefront .OBJ objects.
Also, a module that would allow you to vizualize these models and
rotate them etc..

The goal is not to build a new renderer or something; just a small
program that I need to do some manipulations in bulk on a set of OBJs

Any help much appreciated

Eric
4 Answers

Mike Driscoll

3/15/2008 10:06:00 PM

0

On Mar 15, 3:09 pm, Eric von Horst <z80vsvi...@hotmail.com> wrote:
> Hi,
>
> I am looking for Python modules that allow you to manipulate 3D
> objects, more specifically Alias Wavefront .OBJ objects.
> Also, a module that would allow you to vizualize these models and
> rotate them etc..
>
> The goal is not to build a new renderer or something; just a small
> program that I need to do some manipulations in bulk on a set of OBJs
>
> Any help much appreciated
>
> Eric

I'm not aware of anything. You might look at pyOpenGL or pyglet. They
should be good for 3D modeling at least.

Mike

Carl Banks

3/15/2008 11:03:00 PM

0

On Mar 15, 4:09 pm, Eric von Horst <z80vsvi...@hotmail.com> wrote:
> Hi,
>
> I am looking for Python modules that allow you to manipulate 3D
> objects, more specifically Alias Wavefront .OBJ objects.
> Also, a module that would allow you to vizualize these models and
> rotate them etc..
>
> The goal is not to build a new renderer or something; just a small
> program that I need to do some manipulations in bulk on a set of OBJs


What do you mean by "manipulate". There are lots of ways to
manipulate 3D objects; can you be more specific?


Carl Banks

Python

3/16/2008 1:08:00 PM

0


On 15 mrt 2008, at 23:06, Mike Driscoll wrote:

> On Mar 15, 3:09 pm, Eric von Horst <z80vsvi...@hotmail.com> wrote:
>> Hi,
>>
>> I am looking for Python modules that allow you to manipulate 3D
>> objects, more specifically Alias Wavefront .OBJ objects.
>> Also, a module that would allow you to vizualize these models and
>> rotate them etc..
>>
>> The goal is not to build a new renderer or something; just a small
>> program that I need to do some manipulations in bulk on a set of OBJs
>>
>> Any help much appreciated
>>
>> Eric
>
> I'm not aware of anything. You might look at pyOpenGL or pyglet. They
> should be good for 3D modeling at least.
>
> Mike

....or have a look at Blender's bpython module:
http://www.blender.org/education-he...

Arno

dave_mikesell

3/16/2008 2:49:00 PM

0

On Mar 15, 3:09 pm, Eric von Horst <z80vsvi...@hotmail.com> wrote:
> Hi,
>
> I am looking for Python modules that allow you to manipulate 3D
> objects, more specifically Alias Wavefront .OBJ objects.
> Also, a module that would allow you to vizualize these models and
> rotate them etc..
>
> The goal is not to build a new renderer or something; just a small
> program that I need to do some manipulations in bulk on a set of OBJs

This is more of a question about Alias than Python. I googled it and
found Autodesk's AliasStudio (which apparently used to be Alias
Wavefront) - is this what you're talking about? There is a C++ API,
which could be wrapped in Python using something like SWIG.