[Bf-committers] Python progress

Michel Selten bf-committers@blender.org
26 Feb 2003 20:35:18 +0100


Hi everybody,

here's just a mail with a quick report of the progress I'm making with
regard to the new Python implementation. Currently it is possible to
actually do the following in Blender:

import Blender
Blender.copy()
Blender.Object.copy()
Blender.Object.shareFrom(123)

Running this script will give the following output on your terminal:

self.copy
Object.copy
Object.shareFrom(123)

This is not much, but I'm now at the point where I can actually start
implementing each module.
For a more complete progress report see:
http://members.home.nl/michel.s/python.html

With regards,
	Michel

ps. If you want to build blender with these 'features', run
    configure --enable-exppython
    (For those that didn't know)