Functions | |
| int | SO3CameraCreate (mmachine m) |
| main include | |
| int | SO3CameraLookAt (mmachine m) |
| SO3CameraLookAt : Set a "look at" on the camera. | |
| int | SO3CameraGetDirection (mmachine m) |
| SO3CameraGetDirection : Get the direction of a camera. | |
| int | SO3CameraGetDerivedDirection (mmachine m) |
| SO3CameraGetDirection : Get the derivated direction of a camera. | |
| int | SO3CameraGetDerivedUp (mmachine m) |
| SO3CameraGetDerivedUp : Gets the derived up vector of the camera, including any rotation inherited from a node attachment and reflection matrix. | |
| int | SO3CameraSetViewport (mmachine m) |
| SO3CameraSetViewport : Attach a camera to a viewport. | |
| int | SO3CameraSetFocalLenght (mmachine m) |
| SO3CameraSetFocalLenght : defines focal length of a camera. | |
| int | SO3CameraGetFocalLenght (mmachine m) |
| SO3CameraGetFocalLenght : Get the focal length of a camera. | |
| int | SO3CameraSetFOVy (mmachine m) |
| SO3CameraSetFOVy : defines FOVy of a camera. | |
| int | SO3CameraGetFOVy (mmachine m) |
| SO3CameraGetFOVy : Get the FOVy of a camera. | |
| int | SO3CameraSetPolygonMode (mmachine m) |
| SO3CameraSetPolygonMode : Set the polygon Mode for a given camera. | |
| int | SO3CameraGetPolygonMode (mmachine m) |
| SO3CameraGetPolygonMode : Get the Polygon mode of a camera. | |
| int | SO3CameraSetProjectionType (mmachine m) |
| SO3CameraSetProjectionType : Sets the type of projection to use (orthographic or perspective). Default is perspective. | |
| int | SO3CameraGetProjectionType (mmachine m) |
| SO3CameraGetProjectionType : Get the camera projection type. | |
| int | SO3CameraSetOrthoWindow (mmachine m) |
| SO3CameraSetOrthoWindow : Sets the orthographic window settings, for use with orthographic rendering only. | |
| int | SO3CameraGetOrthoWindow (mmachine m) |
| SO3CameraGetOrthoWindow : Gets the orthographic window settings, for use with orthographic rendering only. | |
| int | SO3CameraSetNearClipDistance (mmachine m) |
| SO3CameraSetNearClipDistance : defines near clip distance of a camera. | |
| int | SO3CameraGetNearClipDistance (mmachine m) |
| SO3CameraGetNearClipDistance : Get the near clip distance of a camera. | |
| int | SO3CameraSetFarClipDistance (mmachine m) |
| SO3CameraSetFarClipDistance : defines far clip distance of a camera. | |
| int | SO3CameraGetFarClipDistance (mmachine m) |
| SO3CameraGetFarClipDistance : Get the far clip distance of a camera. | |
| int | SO3CameraGetViewport (mmachine m) |
| SO3CameraGetViewport : Get the current viewport attached to a camera. | |
| int | SO3CameraGetNumRenderedFaces (mmachine m) |
| SO3CameraGetNumRenderedFaces : Get the numbered of rendered faces for a camera. | |
| int | SO3CameraSetProjectionMatrix (mmachine m) |
| SO3CameraSetProjectionMatrix : Set the camera projection matrix. | |
Scol functions definition
| int SO3CameraCreate | ( | mmachine | m | ) |
main include
SO3CameraCreate : Create a new camea Prototype: fun [SO3_SCENE S] SO3_OBJECT
| SO3_SCENE | : current scene | |
| S | : given name for the new camera |
Definition at line 60 of file SCOLCamera.cpp.
| int SO3CameraGetDerivedDirection | ( | mmachine | m | ) |
SO3CameraGetDirection : Get the derivated direction of a camera.
Prototype: fun [SO3_OBJECT] [F F F]
| SO3_OBJECT | : current camera |
Definition at line 207 of file SCOLCamera.cpp.
| int SO3CameraGetDerivedUp | ( | mmachine | m | ) |
SO3CameraGetDerivedUp : Gets the derived up vector of the camera, including any rotation inherited from a node attachment and reflection matrix.
Prototype: fun [SO3_OBJECT] [F F F]
| SO3_OBJECT | : current camera |
Definition at line 255 of file SCOLCamera.cpp.
| int SO3CameraGetDirection | ( | mmachine | m | ) |
SO3CameraGetDirection : Get the direction of a camera.
Prototype: fun [SO3_OBJECT] [F F F]
| SO3_OBJECT | : current camera |
Definition at line 159 of file SCOLCamera.cpp.
| int SO3CameraGetFarClipDistance | ( | mmachine | m | ) |
SO3CameraGetFarClipDistance : Get the far clip distance of a camera.
Prototype: fun [SO3_OBJECT] F
| SO3_OBJECT | : current camera |
Definition at line 919 of file SCOLCamera.cpp.
| int SO3CameraGetFocalLenght | ( | mmachine | m | ) |
SO3CameraGetFocalLenght : Get the focal length of a camera.
Prototype: fun [SO3_OBJECT] F
| SO3_OBJECT | : current camera |
Definition at line 400 of file SCOLCamera.cpp.
| int SO3CameraGetFOVy | ( | mmachine | m | ) |
SO3CameraGetFOVy : Get the FOVy of a camera.
Prototype: fun [SO3_OBJECT] F
| SO3_OBJECT | : current camera |
Definition at line 479 of file SCOLCamera.cpp.
| int SO3CameraGetNearClipDistance | ( | mmachine | m | ) |
SO3CameraGetNearClipDistance : Get the near clip distance of a camera.
Prototype: fun [SO3_OBJECT] F
| SO3_OBJECT | : current camera |
Definition at line 845 of file SCOLCamera.cpp.
| int SO3CameraGetNumRenderedFaces | ( | mmachine | m | ) |
SO3CameraGetNumRenderedFaces : Get the numbered of rendered faces for a camera.
Prototype: fun [SO3_OBJECT] I
| SO3_OBJECT | : current camera |
Definition at line 1001 of file SCOLCamera.cpp.
| int SO3CameraGetOrthoWindow | ( | mmachine | m | ) |
SO3CameraGetOrthoWindow : Gets the orthographic window settings, for use with orthographic rendering only.
Prototype: fun [SO3_OBJECT] [F F]
| SO3_OBJECT | : current camera |
Definition at line 752 of file SCOLCamera.cpp.
| int SO3CameraGetPolygonMode | ( | mmachine | m | ) |
SO3CameraGetPolygonMode : Get the Polygon mode of a camera.
Prototype: fun [SO3_OBJECT] I
| SO3_OBJECT | : current camera |
For polygon mode, values are :
Definition at line 572 of file SCOLCamera.cpp.
| int SO3CameraGetProjectionType | ( | mmachine | m | ) |
SO3CameraGetProjectionType : Get the camera projection type.
Prototype: fun [SO3_OBJECT] I
| SO3_OBJECT | : current camera |
For projection type, values are :
Definition at line 667 of file SCOLCamera.cpp.
| int SO3CameraGetViewport | ( | mmachine | m | ) |
SO3CameraGetViewport : Get the current viewport attached to a camera.
Prototype: fun [SO3_OBJECT] SO3_VIEWPORT
| SO3_OBJECT | : current camera |
Definition at line 955 of file SCOLCamera.cpp.
| int SO3CameraLookAt | ( | mmachine | m | ) |
SO3CameraLookAt : Set a "look at" on the camera.
Prototype: fun [SO3_OBJECT [F F F]] I
| SO3_OBJECT | : current camera | |
| [F | F F] : The "look at" vector |
Definition at line 109 of file SCOLCamera.cpp.
| int SO3CameraSetFarClipDistance | ( | mmachine | m | ) |
SO3CameraSetFarClipDistance : defines far clip distance of a camera.
Prototype: fun [SO3_OBJECT F] I
| SO3_OBJECT | : current camera | |
| F | : Far clip distance |
Definition at line 882 of file SCOLCamera.cpp.
| int SO3CameraSetFocalLenght | ( | mmachine | m | ) |
SO3CameraSetFocalLenght : defines focal length of a camera.
Prototype: fun [SO3_OBJECT F] I
| SO3_OBJECT | : current camera | |
| F | : focal length |
Definition at line 353 of file SCOLCamera.cpp.
| int SO3CameraSetFOVy | ( | mmachine | m | ) |
SO3CameraSetFOVy : defines FOVy of a camera.
Prototype: fun [SO3_OBJECT F] I
| SO3_OBJECT | : current camera | |
| F | : given FOVy |
Definition at line 439 of file SCOLCamera.cpp.
| int SO3CameraSetNearClipDistance | ( | mmachine | m | ) |
SO3CameraSetNearClipDistance : defines near clip distance of a camera.
Prototype: fun [SO3_OBJECT F] I
| SO3_OBJECT | : current camera | |
| F | : Near clip distance |
Definition at line 801 of file SCOLCamera.cpp.
| int SO3CameraSetOrthoWindow | ( | mmachine | m | ) |
SO3CameraSetOrthoWindow : Sets the orthographic window settings, for use with orthographic rendering only.
Prototype: fun [SO3_OBJECT F F] I
| SO3_OBJECT | : current camera | |
| F | : width in world unit | |
| F | : height in world unit |
Definition at line 711 of file SCOLCamera.cpp.
| int SO3CameraSetPolygonMode | ( | mmachine | m | ) |
SO3CameraSetPolygonMode : Set the polygon Mode for a given camera.
Prototype: fun [SO3_OBJECT I] I
| SO3_OBJECT | : current camera | |
| I | : Polygon Mode |
For polygon mode, values are :
Definition at line 523 of file SCOLCamera.cpp.
| int SO3CameraSetProjectionMatrix | ( | mmachine | m | ) |
SO3CameraSetProjectionMatrix : Set the camera projection matrix.
Prototype: fun [SO3_OBJECT [[F F F F] [F F F F] [F F F F] [F F F F]]] I
| SO3_OBJECT | : current camera | |
| [[F | F F F] [F F F F] [F F F F] [F F F F]] : projection matrix |
Definition at line 1039 of file SCOLCamera.cpp.
| int SO3CameraSetProjectionType | ( | mmachine | m | ) |
SO3CameraSetProjectionType : Sets the type of projection to use (orthographic or perspective). Default is perspective.
Prototype: fun [SO3_OBJECT I] I
| SO3_OBJECT | : current camera | |
| I | : Projection Type Mode |
For polygon mode, values are :
Definition at line 621 of file SCOLCamera.cpp.
| int SO3CameraSetViewport | ( | mmachine | m | ) |
SO3CameraSetViewport : Attach a camera to a viewport.
Prototype: fun [SO3_VIEWPORT SO3_OBJECT] I
| SO3_VIEWPORT | : current viewport | |
| SO3_OBJECT | : current camera |
Definition at line 304 of file SCOLCamera.cpp.
1.6.3