class
SceneCamera
SceneCamera is the camera node in the Simplygon scene graph. SceneCamera contains settings that specify how the camera works and it contains a number of views for that type of camera. A view is a combination of a CameraPosition and a TargetPosition. The SceneCamera can contain any number of views but every element in TargetPositions has to correspond to a tuple element in CameraPosition. TargetPositions is not needed if the camera is set to being omni directional.
Properties
Property | Description |
CameraType | The camera type. Perspective - A regular camera that uses the FieldOfView. Omnidirectional - An omni directional camera view all directions from its position and ignores the TargetPositions and FieldOfView. Orthographic - Orthographic cameras render the scene in a direction determined by the vector from CameraPositions to TargetPositions, it uses OrthographicCameraPixelSize and ignores the FieldOfView and UseNormalizedCoordinates. |
FieldOfView | The field of view (in radians) of the camera. |
IsFrozen | The IsFrozen flag. If set, the node will not be modified by processing modules. |
IsModified | If set, the node is new, copied, or modified by processing modules. This can be useful to track modifications in the scene graph. |
IsVisible | The IsVisible flag. If set, the node is visible. |
NodeGUID | The unique id for this node. |
OriginalName | The OriginalName parameter which can be used to specify the original name of a node, for debugging of merging purposes. This parameter is not copied or cloned, and is not used internally by Simplygon. |
OrthographicCameraPixelSize | Specifies/Gets the length of the side of a square pixel if the camera type is Orthographic. |
PixelFieldOfView | Determines the resolution by specifying the field of view per pixel (both vertically and horizontally) if the camera type is Perspective or Omnidirectional. For instance, if the camera type is Perspective and has PI/2 radians field of view (for the entire camera) and the pixel field of view is (PI/2)/512 the camera will have 512x512 pixels. |
UseNormalizedCoordinates | Normalized coordinates means that the coordinates are relative to the scene: the origin is in the center of the scene and 1 unit length is the distance of the scene radius. This can be used to have cameras in front of or above the scene for instance without having to know the coordinates of the scene. If set to false, then absolute coordinates will be used instead. |
Methods
Method | Description |
AddChild | Adds a child node to this node. If the child is already a child of another node, it is removed from this node. |
CalculateExtents | Calculates the axis-aligned bounding box of the node and all its children. If the node tree contains no geometric data, or all data is hidden, the bounding box is not calcluated, and the method returns false. |
CreateChildMesh | Creates a SceneMesh node as a child node to this node. |
CreateChildPlane | Creates a ScenePlane node as a child node to this node. |
EvaluateDefaultGlobalTransformation | Evaluates the default global transformation of the node, regardless of node animation. |
FindNamedChild | Finds the first child that has the name. |
GetCameraPositions | CameraPositions is an IRealArray (with tuple size 3) where each tuple is a 3d camera position. |
GetChild | Get a pointer to the i:th child of this node. |
GetChildCount | The number of direct children of this node. |
GetClass | Get the name of the SceneCamera class. |
GetInf | The inferior (minimum) extent of the node. |
GetNumberOfViews | Returns the number of views. |
GetParent | The parent node of this node. |
GetPath | The path to this node in the scene. Please note that only paths where each node has a name can be used to get to the node using the path. |
GetRelativeTransform | The relative transformation of this node. |
GetScene | The scene object of the node. |
GetSup | The superior (maximum) extent of the node. |
GetTargetPositions | TargetPositions is an IRealArray (with tuple size 3) where each tuple is a 3d camera target position. |
HasChild | Returns true if the node has the specified child. |
IsA | Returns true if SceneCamera is a or is a descendant of the class named as the type parameter. |
IsNull | Returns true if the SceneCamera object is invalid. |
NewClone | Clones this node tree (this node and all the descendants of this node) and returns the cloned top node. Please note that the copy is not added to any scene, and can be added anywhere. Also note that the clone shares all data pointers with the original nodes, such as geometry data objects. |
NewCopy | Deep copies this node tree (this node and all the descendants of this node) and returns the copy top node. Please note that the copy is not added to any scene, and can be added anywhere. |
RemoveChild | Removes a child from the node. |
RemoveChildren | Removes all children of this node. |
RemoveFromParent | Removes this node from its parent. |
SetCustomSphereCameraPath | Creates a set of camera views placed on a custom sphere around the center of the scene. |
ValidateCamera | Validates the camera properties. Asserts on invalid properties. |
Static methods
Method | Description |
IsClassA | Returns true if the class is a or is a descendant of the class named as the type parameter. |
SafeCast | SafeCast makes sure the input object is of a class that can be cast into spSceneCamera, and if this is the case, returns the object cast into spSceneCamera. |
Properties details
CameraType
The camera type. Perspective - A regular camera that uses the FieldOfView. Omnidirectional - An omni directional camera view all directions from its position and ignores the TargetPositions and FieldOfView. Orthographic - Orthographic cameras render the scene in a direction determined by the vector from CameraPositions to TargetPositions, it uses OrthographicCameraPixelSize and ignores the FieldOfView and UseNormalizedCoordinates.
Syntax
SetCameraType parameters
Type | Name | Min | Max | Description |
ECameraType | value | | | The desired CameraType. |
GetCameraType return value
Type: ECameraType
Default: Perspective
Key | Value | Comment |
Perspective | 0 | Perspective cameras have a field of view. |
Orthographic | 1 | Orthographic cameras have a size. |
Omnidirectional | 2 | Omnidirectional cameras view all directions. |
Syntax
SetCameraType parameters
Type | Name | Min | Max | Description |
ECameraType | value | | | The desired CameraType. |
GetCameraType return value
Type: ``````
Default: Perspective
Key | Value | Comment |
Perspective | 0 | Perspective cameras have a field of view. |
Orthographic | 1 | Orthographic cameras have a size. |
Omnidirectional | 2 | Omnidirectional cameras view all directions. |
Syntax
SetCameraType parameters
Name | Type | Min | Max | Description |
value | ECameraType | | | The desired CameraType. |
GetCameraType return value
Type: ECameraType
Default: Perspective
Key | Value | Comment |
ECameraType_Perspective | 0 | Perspective cameras have a field of view. |
ECameraType_Orthographic | 1 | Orthographic cameras have a size. |
ECameraType_Omnidirectional | 2 | Omnidirectional cameras view all directions. |
FieldOfView
The field of view (in radians) of the camera.
Syntax
SetFieldOfView parameters
Type | Name | Min | Max | Description |
real | value | | | The desired FieldOfView value. |
GetFieldOfView return value
Type: real
Syntax
SetFieldOfView parameters
Type | Name | Min | Max | Description |
float | value | | | The desired FieldOfView value. |
GetFieldOfView return value
Type: float
Syntax
SetFieldOfView parameters
Name | Type | Min | Max | Description |
value | float | | | The desired FieldOfView value. |
GetFieldOfView return value
Type: float
IsFrozen
The IsFrozen flag. If set, the node will not be modified by processing modules.
Syntax
SetIsFrozen parameters
Type | Name | Min | Max | Description |
bool | value | | | The bool that isFrozen is to be set to. |
GetIsFrozen return value
Type: bool
Syntax
SetIsFrozen parameters
Type | Name | Min | Max | Description |
bool | value | | | The bool that isFrozen is to be set to. |
GetIsFrozen return value
Type: bool
Syntax
SetIsFrozen parameters
Name | Type | Min | Max | Description |
value | bool | | | The bool that isFrozen is to be set to. |
GetIsFrozen return value
Type: bool
IsModified
If set, the node is new, copied, or modified by processing modules. This can be useful to track modifications in the scene graph.
Syntax
SetIsModified parameters
Type | Name | Min | Max | Description |
bool | value | | | The bool that IsModified is to be set to. |
GetIsModified return value
Type: bool
Syntax
SetIsModified parameters
Type | Name | Min | Max | Description |
bool | value | | | The bool that IsModified is to be set to. |
GetIsModified return value
Type: bool
Syntax
SetIsModified parameters
Name | Type | Min | Max | Description |
value | bool | | | The bool that IsModified is to be set to. |
GetIsModified return value
Type: bool
IsVisible
The IsVisible flag. If set, the node is visible.
Syntax
SetIsVisible parameters
Type | Name | Min | Max | Description |
bool | value | | | The bool that isVisible is to be set to. |
GetIsVisible return value
Type: bool
Syntax
SetIsVisible parameters
Type | Name | Min | Max | Description |
bool | value | | | The bool that isVisible is to be set to. |
GetIsVisible return value
Type: bool
Syntax
SetIsVisible parameters
Name | Type | Min | Max | Description |
value | bool | | | The bool that isVisible is to be set to. |
GetIsVisible return value
Type: bool
NodeGUID
The unique id for this node.
Syntax
SetNodeGUID parameters
Type | Name | Min | Max | Description |
const char * | value | | | The node id of type string. |
GetNodeGUID return value
Type: spString
Syntax
SetNodeGUID parameters
Type | Name | Min | Max | Description |
string | value | | | The node id of type string. |
GetNodeGUID return value
Type: string
Syntax
SetNodeGUID parameters
Name | Type | Min | Max | Description |
value | str | | | The node id of type string. |
GetNodeGUID return value
Type: str
OriginalName
The OriginalName parameter which can be used to specify the original name of a node, for debugging of merging purposes. This parameter is not copied or cloned, and is not used internally by Simplygon.
Syntax
SetOriginalName parameters
Type | Name | Min | Max | Description |
const char * | value | | | Is a string the name is to be set to. |
GetOriginalName return value
Type: spString
Syntax
SetOriginalName parameters
Type | Name | Min | Max | Description |
string | value | | | Is a string the name is to be set to. |
GetOriginalName return value
Type: string
Syntax
SetOriginalName parameters
Name | Type | Min | Max | Description |
value | str | | | Is a string the name is to be set to. |
GetOriginalName return value
Type: str
OrthographicCameraPixelSize
Specifies/Gets the length of the side of a square pixel if the camera type is Orthographic.
Syntax
SetOrthographicCameraPixelSize parameters
Type | Name | Min | Max | Description |
real | value | | | The desired OrthographicCameraPixelSize value. |
GetOrthographicCameraPixelSize return value
Type: real
Syntax
SetOrthographicCameraPixelSize parameters
Type | Name | Min | Max | Description |
float | value | | | The desired OrthographicCameraPixelSize value. |
GetOrthographicCameraPixelSize return value
Type: float
Syntax
SetOrthographicCameraPixelSize parameters
Name | Type | Min | Max | Description |
value | float | | | The desired OrthographicCameraPixelSize value. |
GetOrthographicCameraPixelSize return value
Type: float
PixelFieldOfView
Determines the resolution by specifying the field of view per pixel (both vertically and horizontally) if the camera type is Perspective or Omnidirectional. For instance, if the camera type is Perspective and has PI/2 radians field of view (for the entire camera) and the pixel field of view is (PI/2)/512 the camera will have 512x512 pixels.
Syntax
SetPixelFieldOfView parameters
Type | Name | Min | Max | Description |
real | value | | | The desired PixelFieldOfView value. |
GetPixelFieldOfView return value
Type: real
Syntax
SetPixelFieldOfView parameters
Type | Name | Min | Max | Description |
float | value | | | The desired PixelFieldOfView value. |
GetPixelFieldOfView return value
Type: float
Syntax
SetPixelFieldOfView parameters
Name | Type | Min | Max | Description |
value | float | | | The desired PixelFieldOfView value. |
GetPixelFieldOfView return value
Type: float
UseNormalizedCoordinates
Normalized coordinates means that the coordinates are relative to the scene: the origin is in the center of the scene and 1 unit length is the distance of the scene radius. This can be used to have cameras in front of or above the scene for instance without having to know the coordinates of the scene. If set to false, then absolute coordinates will be used instead.
Syntax
SetUseNormalizedCoordinates parameters
Type | Name | Min | Max | Description |
bool | value | | | The desired UseNormalizedCoordinates flag. |
GetUseNormalizedCoordinates return value
Type: bool
Syntax
SetUseNormalizedCoordinates parameters
Type | Name | Min | Max | Description |
bool | value | | | The desired UseNormalizedCoordinates flag. |
GetUseNormalizedCoordinates return value
Type: bool
Syntax
SetUseNormalizedCoordinates parameters
Name | Type | Min | Max | Description |
value | bool | | | The desired UseNormalizedCoordinates flag. |
GetUseNormalizedCoordinates return value
Type: bool
Methods details
AddChild
Adds a child node to this node. If the child is already a child of another node, it is removed from this node.
Syntax
Parameters
Type | Name | Min | Max | Description |
SceneNode | child | | | The child object. |
Syntax
Parameters
Type | Name | Min | Max | Description |
SceneNode | child | | | The child object. |
Syntax
Parameters
Name | Type | Min | Max | Description |
child | SceneNode | | | The child object. |
CalculateExtents
Calculates the axis-aligned bounding box of the node and all its children. If the node tree contains no geometric data, or all data is hidden, the bounding box is not calcluated, and the method returns false.
Syntax
Parameters
CalculateExtents takes no parameters.
Return value
Type: bool
Syntax
Parameters
CalculateExtents takes no parameters.
Return value
Type: bool
Syntax
Parameters
CalculateExtents takes no parameters.
Return value
Type: bool
CreateChildMesh
Creates a SceneMesh node as a child node to this node.
Syntax
Parameters
Type | Name | Min | Max | Description |
GeometryData | geom | | | The GeometryData object to associate with this node. |
Return value
Type: SceneMesh
Syntax
Parameters
Type | Name | Min | Max | Description |
GeometryData | geom | | | The GeometryData object to associate with this node. |
Return value
Type: SceneMesh
Syntax
Parameters
Name | Type | Min | Max | Description |
geom | GeometryData | | | The GeometryData object to associate with this node. |
Return value
Type: SceneMesh
CreateChildPlane
Creates a ScenePlane node as a child node to this node.
Syntax
Parameters
Type | Name | Min | Max | Description |
RealData | position | | | The point on the plane. |
RealData | normal | | | The normal to the plane. |
Return value
Type: ScenePlane
Syntax
Parameters
Type | Name | Min | Max | Description |
float[] | position | | | The point on the plane. |
float[] | normal | | | The normal to the plane. |
Return value
Type: ScenePlane
Syntax
Parameters
Name | Type | Min | Max | Description |
position | float | | | The point on the plane. |
normal | float | | | The normal to the plane. |
Return value
Type: ScenePlane
Evaluates the default global transformation of the node, regardless of node animation.
Syntax
Parameters
Type | Name | Min | Max | Description |
Matrix4x4 | global_transform | | | The transformation matrix that receives the global transformation. |
Syntax
Parameters
Type | Name | Min | Max | Description |
Matrix4x4 | global_transform | | | The transformation matrix that receives the global transformation. |
Syntax
Parameters
Name | Type | Min | Max | Description |
global_transform | Matrix4x4 | | | The transformation matrix that receives the global transformation. |
FindNamedChild
Finds the first child that has the name.
Syntax
Parameters
Type | Name | Min | Max | Description |
const char * | name | | | The name of the child to look for. |
Return value
Type: SceneNode
Syntax
Parameters
Type | Name | Min | Max | Description |
string | name | | | The name of the child to look for. |
Return value
Type: SceneNode
Syntax
Parameters
Name | Type | Min | Max | Description |
name | str | | | The name of the child to look for. |
Return value
Type: SceneNode
GetCameraPositions
CameraPositions is an IRealArray (with tuple size 3) where each tuple is a 3d camera position.
Syntax
Parameters
GetCameraPositions takes no parameters.
Return value
Type: RealArray
Syntax
Parameters
GetCameraPositions takes no parameters.
Return value
Type: RealArray
Syntax
Parameters
GetCameraPositions takes no parameters.
Return value
Type: RealArray
GetChild
Get a pointer to the i:th child of this node.
Syntax
Parameters
Type | Name | Min | Max | Description |
rid | index | | | The local index of the child (0->GetChildCount()-1) |
Return value
Type: SceneNode
Syntax
Parameters
Type | Name | Min | Max | Description |
rid | index | | | The local index of the child (0->GetChildCount()-1) |
Return value
Type: SceneNode
Syntax
Parameters
Name | Type | Min | Max | Description |
index | int | | | The local index of the child (0->GetChildCount()-1) |
Return value
Type: SceneNode
GetChildCount
The number of direct children of this node.
Syntax
Parameters
GetChildCount takes no parameters.
Return value
Type: unsigned int
Syntax
Parameters
GetChildCount takes no parameters.
Return value
Type: uint
Syntax
Parameters
GetChildCount takes no parameters.
Return value
Type: int
GetClass
Get the name of the SceneCamera class.
Syntax
Parameters
GetClass takes no parameters.
Return value
Type: spString
Syntax
Parameters
GetClass takes no parameters.
Return value
Type: string
Syntax
Parameters
GetClass takes no parameters.
Return value
Type: str
GetInf
The inferior (minimum) extent of the node.
Syntax
Parameters
GetInf takes no parameters.
Return value
Type: RealData
Syntax
Parameters
GetInf takes no parameters.
Return value
Type: RealData
Syntax
Parameters
GetInf takes no parameters.
Return value
Type: float
GetNumberOfViews
Returns the number of views.
Syntax
Parameters
GetNumberOfViews takes no parameters.
Return value
Type: unsigned int
Syntax
Parameters
GetNumberOfViews takes no parameters.
Return value
Type: uint
Syntax
Parameters
GetNumberOfViews takes no parameters.
Return value
Type: int
GetParent
The parent node of this node.
Syntax
Parameters
GetParent takes no parameters.
Return value
Type: SceneNode
Syntax
Parameters
GetParent takes no parameters.
Return value
Type: SceneNode
Syntax
Parameters
GetParent takes no parameters.
Return value
Type: SceneNode
GetPath
The path to this node in the scene. Please note that only paths where each node has a name can be used to get to the node using the path.
Syntax
Parameters
GetPath takes no parameters.
Return value
Type: spString
Syntax
Parameters
GetPath takes no parameters.
Return value
Type: string
Syntax
Parameters
GetPath takes no parameters.
Return value
Type: str
The relative transformation of this node.
Syntax
Parameters
GetRelativeTransform takes no parameters.
Return value
Type: Matrix4x4
Syntax
Parameters
GetRelativeTransform takes no parameters.
Return value
Type: Matrix4x4
Syntax
Parameters
GetRelativeTransform takes no parameters.
Return value
Type: Matrix4x4
GetScene
The scene object of the node.
Syntax
Parameters
GetScene takes no parameters.
Return value
Type: Scene
Syntax
Parameters
GetScene takes no parameters.
Return value
Type: Scene
Syntax
Parameters
GetScene takes no parameters.
Return value
Type: Scene
GetSup
The superior (maximum) extent of the node.
Syntax
Parameters
GetSup takes no parameters.
Return value
Type: RealData
Syntax
Parameters
GetSup takes no parameters.
Return value
Type: RealData
Syntax
Parameters
GetSup takes no parameters.
Return value
Type: float
GetTargetPositions
TargetPositions is an IRealArray (with tuple size 3) where each tuple is a 3d camera target position.
Syntax
Parameters
GetTargetPositions takes no parameters.
Return value
Type: RealArray
Syntax
Parameters
GetTargetPositions takes no parameters.
Return value
Type: RealArray
Syntax
Parameters
GetTargetPositions takes no parameters.
Return value
Type: RealArray
HasChild
Returns true if the node has the specified child.
Syntax
Parameters
Type | Name | Min | Max | Description |
SceneNode | child | | | The child node to look for. |
Return value
Type: bool
Syntax
Parameters
Type | Name | Min | Max | Description |
SceneNode | child | | | The child node to look for. |
Return value
Type: bool
Syntax
Parameters
Name | Type | Min | Max | Description |
child | SceneNode | | | The child node to look for. |
Return value
Type: bool
IsA
Returns true if SceneCamera is a or is a descendant of the class named as the type parameter.
Syntax
Parameters
Type | Name | Min | Max | Description |
const char * | type | | | Name of the class to check if SceneCamera is, or is a descendant of. |
Return value
Type: bool
Syntax
Parameters
Type | Name | Min | Max | Description |
string | type | | | Name of the class to check if SceneCamera is, or is a descendant of. |
Return value
Type: bool
Syntax
Parameters
Name | Type | Min | Max | Description |
type | str | | | Name of the class to check if SceneCamera is, or is a descendant of. |
Return value
Type: bool
IsNull
Returns true if the SceneCamera object is invalid.
Syntax
Parameters
IsNull takes no parameters.
Return value
Type: bool
Syntax
Parameters
IsNull takes no parameters.
Return value
Type: bool
Syntax
Parameters
IsNull takes no parameters.
Return value
Type: bool
NewClone
Clones this node tree (this node and all the descendants of this node) and returns the cloned top node. Please note that the copy is not added to any scene, and can be added anywhere. Also note that the clone shares all data pointers with the original nodes, such as geometry data objects.
Syntax
Parameters
NewClone takes no parameters.
Return value
Type: SceneNode
Syntax
Parameters
NewClone takes no parameters.
Return value
Type: SceneNode
Syntax
Parameters
NewClone takes no parameters.
Return value
Type: SceneNode
NewCopy
Deep copies this node tree (this node and all the descendants of this node) and returns the copy top node. Please note that the copy is not added to any scene, and can be added anywhere.
Syntax
Parameters
NewCopy takes no parameters.
Return value
Type: SceneNode
Syntax
Parameters
NewCopy takes no parameters.
Return value
Type: SceneNode
Syntax
Parameters
NewCopy takes no parameters.
Return value
Type: SceneNode
RemoveChild
Removes a child from the node.
Syntax
Parameters
Type | Name | Min | Max | Description |
SceneNode | child | | | The child to be removed. |
Syntax
Parameters
Type | Name | Min | Max | Description |
SceneNode | child | | | The child to be removed. |
Syntax
Parameters
Name | Type | Min | Max | Description |
child | SceneNode | | | The child to be removed. |
RemoveChildren
Removes all children of this node.
Syntax
Parameters
RemoveChildren takes no parameters.
Syntax
Parameters
RemoveChildren takes no parameters.
Syntax
Parameters
RemoveChildren takes no parameters.
RemoveFromParent
Removes this node from its parent.
Syntax
Parameters
RemoveFromParent takes no parameters.
Syntax
Parameters
RemoveFromParent takes no parameters.
Syntax
Parameters
RemoveFromParent takes no parameters.
SetCustomSphereCameraPath
Creates a set of camera views placed on a custom sphere around the center of the scene.
Syntax
Parameters
Type | Name | Min | Max | Description |
int | fidelity | | | Determines both the resolution and the amount of cameras and should be between 0 and 10. |
real | pitch_angle | | | Amount of degrees the sphere should be pitch rotated. |
real | yaw_angle | | | Amount of degrees the sphere should be yaw rotated. |
real | coverage_angle | | | 360 would be entire sphere, 180 would be hemisphere, 0 would be no sphere. |
Syntax
Parameters
Type | Name | Min | Max | Description |
int | fidelity | | | Determines both the resolution and the amount of cameras and should be between 0 and 10. |
float | pitch_angle | | | Amount of degrees the sphere should be pitch rotated. |
float | yaw_angle | | | Amount of degrees the sphere should be yaw rotated. |
float | coverage_angle | | | 360 would be entire sphere, 180 would be hemisphere, 0 would be no sphere. |
Syntax
Parameters
Name | Type | Min | Max | Description |
fidelity | int | | | Determines both the resolution and the amount of cameras and should be between 0 and 10. |
pitch_angle | float | | | Amount of degrees the sphere should be pitch rotated. |
yaw_angle | float | | | Amount of degrees the sphere should be yaw rotated. |
coverage_angle | float | | | 360 would be entire sphere, 180 would be hemisphere, 0 would be no sphere. |
ValidateCamera
Validates the camera properties. Asserts on invalid properties.
Syntax
Parameters
ValidateCamera takes no parameters.
Return value
Type: bool
Syntax
Parameters
ValidateCamera takes no parameters.
Return value
Type: bool
Syntax
Parameters
ValidateCamera takes no parameters.
Return value
Type: bool
Static methods details
IsClassA
Returns true if the class is a or is a descendant of the class named as the type parameter.
Syntax
Parameters
Type | Name | Min | Max | Description |
const char * | type | | | Name of the class to check if the class is, or is a descendant of. |
Return value
Type: bool
Syntax
Parameters
Type | Name | Min | Max | Description |
string | type | | | Name of the class to check if the class is, or is a descendant of. |
Return value
Type: bool
Syntax
Parameters
Name | Type | Min | Max | Description |
type | str | | | Name of the class to check if the class is, or is a descendant of. |
Return value
Type: bool
SafeCast
SafeCast makes sure the input object is of a class that can be cast into spSceneCamera, and if this is the case, returns the object cast into spSceneCamera.
Syntax
Parameters
Type | Name | Min | Max | Description |
Object | object | | | Object to cast. |
Return value
Type: SceneCamera
Syntax
Parameters
Type | Name | Min | Max | Description |
Object | object | | | Object to cast. |
Return value
Type: SceneCamera
Syntax
Parameters
Name | Type | Min | Max | Description |
object | Object | | | Object to cast. |
Return value
Type: SceneCamera