Changeset 2738 for GTP/trunk/Lib/Vis/Preprocessing/src/GvsPreprocessor.h
- Timestamp:
- 06/04/08 18:40:13 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
GTP/trunk/Lib/Vis/Preprocessing/src/GvsPreprocessor.h
r2736 r2738 4 4 #include <fstream> 5 5 #include <stack> 6 7 6 #include "Preprocessor.h" 7 #include "FlexibleHeap.h" 8 9 8 10 9 11 namespace GtpVisibilityPreprocessor { … … 93 95 94 96 97 struct ProbablyVisibleTriangleContainer 98 { 99 KdNode *node; 100 ObjectContainer mTriangles; 101 }; 102 103 104 typedef FlexibleHeap<ProbablyVisibleTriangleContainer *> ProbablyVisibleTriangleQueue; 105 106 107 95 108 /** Sampling based visibility preprocessing. The implementation is 96 109 based on heuristical sampling of view space. … … 336 349 337 350 bool mUseProbablyVisibleSampling; 351 352 float mInitialJitter; 353 354 bool mUseDeterministicGvs; 355 356 float mRadiusOfInfluence; 338 357 }; 339 358 340 }; 359 360 } 341 361 342 362 #endif
Note: See TracChangeset
for help on using the changeset viewer.