2009

Table Of Contents
To use a Maya command with positional arguments
1 Move the polygonal cube that you created with the following Python
command:
cmds.move(1,2,3)
The polygonal cube moves to the XYZ co-ordinates 1,2,3.
The move command accepts XYZ co-ordinates as its commands
arguments.
2 Scale the polygonal cube with the following command:
cmds.scale(2,2,2)
3 Re-scale the polygonal cube with the following command:
cmds.scale(3)
Entering Python commands | 647