Changeset 938 for GTP/trunk/Lib/Vis/OnlineCullingCHC/include
- Timestamp:
- 05/10/06 08:05:24 (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
GTP/trunk/Lib/Vis/OnlineCullingCHC/include/VisibilityEnvironment.h
r925 r938 3 3 4 4 #include <string> 5 6 7 namespace GtpVisibilityPreprocessor { 8 class Environment; 9 } 5 10 6 11 namespace GtpVisibility { … … 20 25 NUM_CULLING_MANAGERS}; 21 26 27 22 28 /** Loads an environment from disk. 23 29 */ 24 voidLoadEnvironment(std::string filename);30 bool LoadEnvironment(std::string filename); 25 31 /** Returns filename of scene. 26 32 */ … … 29 35 */ 30 36 std::string getViewCellsFileName(); 37 38 GtpVisibilityPreprocessor::Environment *GetPreprocessorEnvironment(); 39 40 41 protected: 42 GtpVisibilityPreprocessor::Environment *mEnvironment; 31 43 }; 32 44 } // namespace GtpVisibility
Note: See TracChangeset
for help on using the changeset viewer.