pymel.core.nodetypes.StereoRigCamera

digraph inheritanced0807f765d { rankdir=TB; ranksep=0.15; nodesep=0.15; size="8.0, 12.0"; "Camera" [fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",URL="pymel.core.nodetypes.Camera.html#pymel.core.nodetypes.Camera",style="setlinewidth(0.5)",tooltip="class counterpart of mel function `camera`",height=0.25,shape=box,fontsize=8]; "Shape" -> "Camera" [arrowsize=0.5,style="setlinewidth(0.5)"]; "ContainerBase" [fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",URL="pymel.core.nodetypes.ContainerBase.html#pymel.core.nodetypes.ContainerBase",style="setlinewidth(0.5)",height=0.25,shape=box,fontsize=8]; "DependNode" -> "ContainerBase" [arrowsize=0.5,style="setlinewidth(0.5)"]; "DagNode" [fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",URL="pymel.core.nodetypes.DagNode.html#pymel.core.nodetypes.DagNode",style="setlinewidth(0.5)",height=0.25,shape=box,fontsize=8]; "Entity" -> "DagNode" [arrowsize=0.5,style="setlinewidth(0.5)"]; "DependNode" [fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",URL="pymel.core.nodetypes.DependNode.html#pymel.core.nodetypes.DependNode",style="setlinewidth(0.5)",height=0.25,shape=box,fontsize=8]; "PyNode" -> "DependNode" [arrowsize=0.5,style="setlinewidth(0.5)"]; "Entity" [fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",URL="pymel.core.nodetypes.Entity.html#pymel.core.nodetypes.Entity",style="setlinewidth(0.5)",height=0.25,shape=box,fontsize=8]; "ContainerBase" -> "Entity" [arrowsize=0.5,style="setlinewidth(0.5)"]; "ProxyUnicode" [fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",URL="../pymel.util.utilitytypes/pymel.util.utilitytypes.ProxyUnicode.html#pymel.util.utilitytypes.ProxyUnicode",style="setlinewidth(0.5)",height=0.25,shape=box,fontsize=8]; "PyNode" [fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",URL="../pymel.core.general/pymel.core.general.PyNode.html#pymel.core.general.PyNode",style="setlinewidth(0.5)",tooltip="Abstract class that is base for all pymel nodes classes.",height=0.25,shape=box,fontsize=8]; "ProxyUnicode" -> "PyNode" [arrowsize=0.5,style="setlinewidth(0.5)"]; "Shape" [fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",URL="pymel.core.nodetypes.Shape.html#pymel.core.nodetypes.Shape",style="setlinewidth(0.5)",height=0.25,shape=box,fontsize=8]; "DagNode" -> "Shape" [arrowsize=0.5,style="setlinewidth(0.5)"]; "StereoRigCamera" [fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",URL="#pymel.core.nodetypes.StereoRigCamera",style="setlinewidth(0.5)",height=0.25,shape=box,fontsize=8]; "Camera" -> "StereoRigCamera" [arrowsize=0.5,style="setlinewidth(0.5)"]; }

class StereoRigCamera(*args, **kwargs)
FilmFit = Enum( EnumValue('FilmFit', 0, 'fillFilmFit'), EnumValue('FilmFit', 1, 'horizontalFilmFit'), EnumValue('FilmFit', 2, 'verticalFilmFit'), EnumValue('FilmFit', 3, 'overscanFilmFit'), EnumValue('FilmFit', 4, 'invalid'))
RollOrder = Enum( EnumValue('RollOrder', 0, 'rotateTranslate'), EnumValue('RollOrder', 1, 'translateRotate'))
getFarClippingPlane()

Returns the distance to the far clipping plane.

Return type:float

Derived from api method maya.OpenMaya.MFnCamera.farClippingPlane

getNearClippingPlane()

Returns the distance to the near clipping plane.

Return type:float

Derived from api method maya.OpenMaya.MFnCamera.nearClippingPlane

isMotionBlur()

Determine if motion blur is on/off for the camera.

Return type:bool

Derived from api method maya.OpenMaya.MFnCamera.isMotionBlur

set(wsEyeLocation, wsViewDirection, wsUpDirection, horizFieldOfView, aspectRatio)

Convenience routine to set the camera viewing parameters. The specified values should be in world space where applicable.

Parameters:
wsEyeLocation : Point

Eye location to set in world space

wsViewDirection : Vector

View direction to set in world space

wsUpDirection : Vector

Up direction to set in world space

horizFieldOfView : float

The horizontal field of view to set

aspectRatio : float

The aspect ratio to set

Derived from api method maya.OpenMaya.MFnCamera.set

Undo is not currently supported for this method

setFarClippingPlane(dFar)

Set the distances to the Far Clipping Plane.

Parameters:
dFar : float

The far clipping plane value to be set

Derived from api method maya.OpenMaya.MFnCamera.setFarClippingPlane

setMotionBlur(motionBlur)

Turns motion blur on/off for the camera.

Parameters:
motionBlur : bool

true turns motion blur on, false turns it off.

Derived from api method maya.OpenMaya.MFnCamera.setMotionBlur

setNearClippingPlane(dNear)

Set the distances to the Near Clipping Plane.

Parameters:
dNear : float

The near clipping plane value to be set

Derived from api method maya.OpenMaya.MFnCamera.setNearClippingPlane

setNearFarClippingPlanes(dNear, dFar)

Set the distances to the Near and Far Clipping Planes.

Parameters:
dNear : float

The near clipping plane value to be set

dFar : float

The far clipping plane value to be set

Derived from api method maya.OpenMaya.MFnCamera.setNearFarClippingPlanes

Undo is not currently supported for this method