Index: camera.h
===================================================================
--- camera.h	(revision 1181)
+++ camera.h	(revision 1182)
@@ -49,7 +49,7 @@
 as rotation angles.
 **/
 
-__rayapi float *raydium_camera_get_data(void);
+__rayapi float *raydium_camera_data_get(void);
 /**
 Function to get the data of the camera in an array of 6 floats.
 The first 3 values are the position like x,y,z in universal coordinates.
@@ -66,7 +66,19 @@
 Returned data is related to the current frame.
 **/
 
+__rayapi void raydium_camera_data_set(GLfloat *data);
+/**
+This will set current camera data (data is copied, no need to keep it
+allocated after the call). See above for more information about
+this data.
+**/
 
+__rayapi void raydium_camera_data_dump(void);
+/**
+This will display current camera data on the console.
+**/
+
+
 __rayapi void raydium_camera_look_at (GLfloat x, GLfloat y, GLfloat z, GLfloat x_to, GLfloat y_to, GLfloat z_to);
 /**
 Sets the camera at (x,y,z) position, and looks at (x_to,y_to,z_to).