Which technique you use to disconnect joints?

Exemple:

cmds.joint( p=(0, 0, 0), name='jointA' )
cmds.joint( p=(0, 1, 0), name='jointB' )
cmds.joint( p=(0, 2, 0), name='jointC' )

I want to create three joints with no "bones", A, B, C separately in
the same positions.

Exemple:
cmds.group()
cmds.joint( p=(0, 0, 0), name='jointA' )
cmds.group()
cmds.joint( p=(0, 1, 0), name='jointB' )
cmds.group()
cmds.joint( p=(0, 2, 0), name='jointC' )

What is the correct way to achieve the same result?

Thanks to whoever can help!

-- 
http://groups.google.com/group/python_inside_maya

Reply via email to