2010

Table Of Contents
4 Move the polygonal cube relative to its current position by typing the
following:
cmds.move(-1,0,-2,relative=True)
The polygonal cube moves relative to its current position. The relative
flag must be placed after the command arguments, as in Python, when
passing arguments, named arguments must appear after positional
arguments. The command arguments must always be the first arguments
of the command.
5 Move the polygonal sphere without selecting it by typing the following:
cmds.move(3,2,1,"testSphere",relative=True)
The name of the object must be passed as a string after the command
arguments, but before the flags.
Using flags in Python | 709