collada.camera.BoundOrthographicCamera¶
-
class
collada.camera.
BoundOrthographicCamera
(cam, matrix)¶ Bases:
collada.camera.BoundCamera
Orthographic camera bound to a scene with a transform. This gets created when a camera is instantiated in a scene. Do not create this manually.
digraph inheritance36891bae67 { rankdir=LR; size="8.0, 12.0"; "BoundCamera" [style="setlinewidth(0.5)",URL="collada.camera.BoundCamera.html#collada.camera.BoundCamera",fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",tooltip="Base class for bound cameras",height=0.25,shape=box,fontsize=10]; "BoundOrthographicCamera" [style="setlinewidth(0.5)",URL="#collada.camera.BoundOrthographicCamera",fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",tooltip="Orthographic camera bound to a scene with a transform. This gets created when a",height=0.25,shape=box,fontsize=10]; "BoundCamera" -> "BoundOrthographicCamera" [arrowsize=0.5,style="setlinewidth(0.5)"]; "BoundPerspectiveCamera" [style="setlinewidth(0.5)",URL="collada.camera.BoundPerspectiveCamera.html#collada.camera.BoundPerspectiveCamera",fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",tooltip="Perspective camera bound to a scene with a transform. This gets created when a",height=0.25,shape=box,fontsize=10]; "BoundCamera" -> "BoundPerspectiveCamera" [arrowsize=0.5,style="setlinewidth(0.5)"]; "Camera" [style="setlinewidth(0.5)",URL="collada.camera.Camera.html#collada.camera.Camera",fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",tooltip="Base camera class holding data from <camera> tags.",height=0.25,shape=box,fontsize=10]; "DaeObject" -> "Camera" [arrowsize=0.5,style="setlinewidth(0.5)"]; "DaeObject" [style="setlinewidth(0.5)",URL="collada.common.DaeObject.html#collada.common.DaeObject",fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",tooltip="This class is the abstract interface to all collada objects.",height=0.25,shape=box,fontsize=10]; "OrthographicCamera" [style="setlinewidth(0.5)",URL="collada.camera.OrthographicCamera.html#collada.camera.OrthographicCamera",fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",tooltip="Orthographic camera as defined in COLLADA tag <orthographic>.",height=0.25,shape=box,fontsize=10]; "Camera" -> "OrthographicCamera" [arrowsize=0.5,style="setlinewidth(0.5)"]; "PerspectiveCamera" [style="setlinewidth(0.5)",URL="collada.camera.PerspectiveCamera.html#collada.camera.PerspectiveCamera",fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",tooltip="Perspective camera as defined in COLLADA tag <perspective>.",height=0.25,shape=box,fontsize=10]; "Camera" -> "PerspectiveCamera" [arrowsize=0.5,style="setlinewidth(0.5)"]; }
-
__init__
(cam, matrix)¶
Methods
__init__
(cam, matrix)-
xmag
= None¶ Horizontal magnification of the view
-
ymag
= None¶ Vertical magnification of the view
-
aspect_ratio
= None¶ Aspect ratio of the field of view
-
znear
= None¶ Distance to the near clipping plane
-
zfar
= None¶ Distance to the far clipping plane
-
matrix
= None¶ The matrix bound to
-
position
= None¶ The position of the camera
-
direction
= None¶ The direction the camera is facing
-
up
= None¶ The up vector of the camera
-
original
= None¶ Original
collada.camera.OrthographicCamera
object this is bound to.
-