On 20/09/2014 at 11:51, xxxxxxxx wrote:
Hallo everybody,
subject is the question. But for a better understanding a snippes
import c4d
from c4d import utils
#Welcome to the world of Python
def main() :
childs = op.GetChildren()
splines = []
for child in childs:
splines.append(child.GetClone())
#Here it is doing alot of stuff with the splines
#After all I want all splines joined to one
return spline
Id like to use a command, but Im not sure which one.
Thx and greetings
rown