Update of /cvsroot/opal/opal/samples/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2054/samples/src
Modified Files:
BaseOpalApp.h
Log Message:
fixed bug in one of the Matrix44r invert function (the one that wasn't being used anywhere); added a smart tolerance-checking function
Index: BaseOpalApp.h
===================================================================
RCS file: /cvsroot/opal/opal/samples/src/BaseOpalApp.h,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** BaseOpalApp.h 25 Apr 2005 19:47:38 -0000 1.9
--- BaseOpalApp.h 27 Apr 2005 02:28:18 -0000 1.10
***************
*** 122,126 ****
// Notify the application about the new frame.
! appFrameStarted((opal::real)dt);
return true;
--- 122,129 ----
// Notify the application about the new frame.
! if (false == appFrameStarted((opal::real)dt))
! {
! return false;
! }
return true;
|