[Opal-commits] opal/src VolumeSensor.h,1.3,1.4
Status: Inactive
Brought to you by:
tylerstreeter
|
From: Andres R. <ar...@us...> - 2005-03-21 03:54:06
|
Update of /cvsroot/opal/opal/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24480/src Modified Files: VolumeSensor.h Log Message: added getSolid back into sensor and added clearShapes into ODESolid (I think) Index: VolumeSensor.h =================================================================== RCS file: /cvsroot/opal/opal/src/VolumeSensor.h,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** VolumeSensor.h 14 Mar 2005 05:18:27 -0000 1.3 --- VolumeSensor.h 21 Mar 2005 03:53:57 -0000 1.4 *************** *** 75,88 **** /// Returns the number of Solids in the results. ! OPAL_DECL int OPAL_CALL getNumSolids()const { ! return (int)(mSolidList.size()); } ! // This is probably not needed... ! //Solid* getSolid(unsigned int i)const ! //{ ! // return mSolidList.at(i); ! //} /// Removes all Solids from the results. --- 75,87 ---- /// Returns the number of Solids in the results. ! OPAL_DECL unsigned int OPAL_CALL getNumSolids()const { ! return (unsigned int)(mSolidList.size()); } ! OPAL_DECL Solid* OPAL_CALL getSolid(unsigned int i)const ! { ! return mSolidList.at(i); ! } /// Removes all Solids from the results. |