pymel.core.rendering.viewPlace

viewPlace(*args, **kwargs)

This command positions the camera as specified. The lookAt and viewDirection flags are mutually exclusive, as are the ortho and perspective flags. If this command switches a camera from ortho to perspective or the other way around without specifying a new field of view, then one is calculated based on a heuristic involving the selected objects. If the camera is not specified on the command line, the command will check to see if there is a camera on the active list. The user should be aware that some positions will be unattainable. For example, using a new camera located at the origin and specifying a lookAt of [0 0 -5] and an up of [1 1 1]. In these cases, the camera will always aim at the lookAt, and the new up direction will be determined by transforming the specified up into camera space and then projecting this vector onto a plane defined by the camera’s up and right vectors. Using the example above, the new up vector will be [1 1 0].

Flags:

Long Name / Short Name Argument Types Properties
animate / an bool ../../../_images/create.gif
  If set to true then animate the camera transition from current position to the final one.
eyePoint / eye float, float, float ../../../_images/create.gif
  The new eye point in world coordinates.
fieldOfView / fov float ../../../_images/create.gif
  The new field of view (in degrees, for perspective cameras, and in world distance for ortho cameras)
lookAt / la float, float, float ../../../_images/create.gif
  The new look-at point in world coordinates.
ortho / o bool ../../../_images/create.gif
  Sets the camera to be orthgraphic.
perspective / p bool ../../../_images/create.gif
  Sets the camera to be perspective.
upDirection / up float, float, float ../../../_images/create.gif
  The new up direction vector.
viewDirection / vd float, float, float ../../../_images/create.gif
  The new view direction vector. Flag can have multiple arguments, passed either as a tuple or a list.

Derived from mel command maya.cmds.viewPlace

Example:

import pymel.core as pm

# Create a new camera
cam = pm.camera();
camShape = cam[1];

pm.viewPlace( camShape, p=True, fov=20 )

pm.viewPlace( camShape, eye=(0, 0, 20) )

pm.viewPlace( camShape, la=(0, 0, 0) )