A camera object is used for taking a picture of a scene graph. More...
Functions | |
EOAPI void | evas_canvas3d_camera_projection_matrix_set (Eo *obj, const Evas_Real *matrix) |
Set the projection matrix of the given camera. More... | |
EOAPI void | evas_canvas3d_camera_projection_matrix_get (const Eo *obj, Evas_Real *matrix) |
Get the projection matrix of the given camera. More... | |
EOAPI void | evas_canvas3d_camera_projection_perspective_set (Eo *obj, Evas_Real fovy, Evas_Real aspect, Evas_Real dnear, Evas_Real dfar) |
Set the projection matrix of the given camera with perspective projection. More... | |
EOAPI void | evas_canvas3d_camera_projection_frustum_set (Eo *obj, Evas_Real left, Evas_Real right, Evas_Real bottom, Evas_Real top, Evas_Real dnear, Evas_Real dfar) |
Set the projection matrix of the given camera with frustum projection. More... | |
EOAPI void | evas_canvas3d_camera_projection_ortho_set (Eo *obj, Evas_Real left, Evas_Real right, Evas_Real bottom, Evas_Real top, Evas_Real dnear, Evas_Real dfar) |
Set the projection matrix of the given camera with orthogonal projection. More... | |
EOAPI Eina_Bool | evas_canvas3d_camera_node_visible_get (Eo *obj, Evas_Canvas3D_Node *camera_node, Evas_Canvas3D_Node *node, Evas_Canvas3D_Frustum_Mode key) |
Check is bounding sphere of given node inside frustum of camera node. More... | |
A camera object is used for taking a picture of a scene graph.
A camera object itself is just a set of properties on how the camera should take the picture (like focus length and film size of the real world cameras). To be able to take a shot of the scene, a camera should be located in the scene, so that it has its viewing position and direction. It is done by containing the camera on a node. If one wants to locate several cameras having same properties, instead of creating multiple cameras, just create one camera and multiple nodes containing the camera and locate them at each desired position and direction. Just for convenience, use evas_canvas3d_node_position_set() to move the camera to desired position and use evas_canvas3d_node_look_at_set() to adjust the viewing direction of the camera.
Set the projection matrix of the given camera.
Default projection matrix is identity matrix.
See also evas_canvas3d_camera_projection_perspective_set, evas_canvas3d_camera_projection_ortho_set and evas_canvas3d_camera_projection_frustum_set.
[in] | matrix | Projection Matrix |
Get the projection matrix of the given camera.
See also evas_canvas3d_camera_projection_matrix_set.
[out] | matrix | Projection Matrix |
EOAPI void evas_canvas3d_camera_projection_perspective_set | ( | Eo * | obj, |
Evas_Real | fovy, | ||
Evas_Real | aspect, | ||
Evas_Real | dnear, | ||
Evas_Real | dfar | ||
) |
Set the projection matrix of the given camera with perspective projection.
See also evas_canvas3d_camera_projection_matrix_set.
[in] | fovy | Field of view angle in Y direction. |
[in] | aspect | Aspect ratio. |
[in] | dnear | Distance to near clipping plane. |
[in] | dfar | Distance to far clipping plane. |
EOAPI void evas_canvas3d_camera_projection_frustum_set | ( | Eo * | obj, |
Evas_Real | left, | ||
Evas_Real | right, | ||
Evas_Real | bottom, | ||
Evas_Real | top, | ||
Evas_Real | dnear, | ||
Evas_Real | dfar | ||
) |
Set the projection matrix of the given camera with frustum projection.
See also evas_canvas3d_camera_projection_matrix_set.
[in] | left | Left X coordinate of the near clipping plane. |
[in] | right | Right X coordinate of the near clipping plane.. |
[in] | bottom | Bottom Y coordinate of the near clipping plane. |
[in] | top | Top Y coordinate of the near clipping plane |
[in] | dnear | Distance to near clipping plane. |
[in] | dfar | Distance to far clipping plane. |
EOAPI void evas_canvas3d_camera_projection_ortho_set | ( | Eo * | obj, |
Evas_Real | left, | ||
Evas_Real | right, | ||
Evas_Real | bottom, | ||
Evas_Real | top, | ||
Evas_Real | dnear, | ||
Evas_Real | dfar | ||
) |
Set the projection matrix of the given camera with orthogonal projection.
See also evas_canvas3d_camera_projection_matrix_set.
[in] | left | Left X coordinate of the near clipping plane. |
[in] | right | Right X coordinate of the near clipping plane.. |
[in] | bottom | Bottom Y coordinate of the near clipping plane. |
[in] | top | Top Y coordinate of the near clipping plane |
[in] | dnear | Distance to near clipping plane. |
[in] | dfar | Distance to far clipping plane. |
EOAPI Eina_Bool evas_canvas3d_camera_node_visible_get | ( | Eo * | obj, |
Evas_Canvas3D_Node * | camera_node, | ||
Evas_Canvas3D_Node * | node, | ||
Evas_Canvas3D_Frustum_Mode | key | ||
) |
Check is bounding sphere of given node inside frustum of camera node.
If the nodes are null
or nodes type mismatch error wrong type of nodes will be generated and returned false
.
[in] | camera_node | The given camera node. |
[in] | node | The given node. |
[in] | key |
true
in frustum, false
otherwise