[artoolkit-commits] artoolkit/include/AR gsub_lite.h,1.13,1.14
Optical marker tracking and overlay for augmented reality.
Brought to you by:
philip_lamb
From: Philip L. <phi...@us...> - 2006-10-04 03:44:43
|
Update of /cvsroot/artoolkit/artoolkit/include/AR In directory sc8-pr-cvs11.sourceforge.net:/tmp/cvs-serv1457 Modified Files: gsub_lite.h Log Message: Added RH versions of GL projection and modelview fns in gsub_lite, and switch examples to using these. Index: gsub_lite.h =================================================================== RCS file: /cvsroot/artoolkit/artoolkit/include/AR/gsub_lite.h,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** gsub_lite.h 29 Aug 2006 01:35:52 -0000 1.13 --- gsub_lite.h 4 Oct 2006 03:44:41 -0000 1.14 *************** *** 260,263 **** --- 260,272 ---- /*! + @function + @abstract (description) + @discussion (description) + @param (name) (description) + @result (description) + */ + void arglCameraFrustumRH(const ARParam *cparam, const double focalmin, const double focalmax, GLdouble m_projection[16]); + + /*! @function @abstract Create an OpenGL viewing transformation matrix. *************** *** 281,284 **** --- 290,302 ---- /*! + @function + @abstract (description) + @discussion (description) + @param (name) (description) + @result (description) + */ + void arglCameraViewRH(const double para[3][4], GLdouble m_modelview[16], const double scale); + + /*! @function @abstract Display an ARVideo image, by drawing it using OpenGL. |