Go to: Synopsis. Return value. Flags. Python examples.
autoPlace([useMouse=boolean])
Note: Strings representing object names and arguments must be separated by commas. This is not depicted in the synopsis.
autoPlace is undoable, NOT queryable, and NOT editable.
This command takes a point in the centre of the current modeling pane and projects it onto the live surface. This produces a point in 3 space which is returned. If the um/useMouse flag is set the current mouse position is used rather than the centre of the modeling pane.
float[] |
Long name (short name) | Argument types | Properties | ||
---|---|---|---|---|
useMouse(um)
|
boolean
|
![]() |
||
|
![]() |
![]() |
![]() |
![]() |
import maya.cmds as cmds # Move the scene around a bit so the grid is no longer # centered in the view. # cmds.track( right=10 ) cmds.track( down=10 ) # Create a sphere. # sphere = cmds.sphere() # Reposition the sphere so that it is in the center of the # view. # position = cmds.autoPlace() cmds.move( position[0], position[1], position[2], sphere[0], relative=True )