On 15/07/2013 at 06:58, xxxxxxxx wrote:
I trying to create a python generator with a FFD (later to be converted to a object plugin).
import c4d
#Welcome to the world of Python
def main() :
ffd = c4d.BaseObject(c4d.Offd)
return ffd
However, the object created is a BaseObject, so it must be converted first to a PointObject in order to access the point values.
I tried to make it editable with the modelling command, but it doesn't work.
Any examples or clues?
-pim