- Timestamp:
- 03/24/06 08:01:08 (19 years ago)
- Location:
- GTP/trunk/Lib/Vis/Preprocessing/src
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
GTP/trunk/Lib/Vis/Preprocessing/src/Makefile
r713 r718 1 1 ############################################################################# 2 2 # Makefile for building: preprocessor 3 # Generated by qmake (2.00a) (Qt 4.1.0) on: po 20. III 17:50:0720063 # Generated by qmake (2.00a) (Qt 4.1.0) on: ?t 23. III 21:40:08 2006 4 4 # Project: preprocessor.pro 5 5 # Template: app -
GTP/trunk/Lib/Vis/Preprocessing/src/RssPreprocessor.cpp
r713 r718 603 603 float ratios[] = {0.8f,0.1f,0.1f}; 604 604 605 606 607 605 GenerateRays(mRssSamplesPerPass*ratios[0], RSS_BASED_DISTRIBUTION, rays); 608 606 CastRays(rays, tmpVssRays); -
GTP/trunk/Lib/Vis/Preprocessing/src/ViewCellsManager.cpp
r713 r718 1337 1337 ray.mRelativePvsContribution += contribution; 1338 1338 } 1339 1340 //for directional sampling it is important to count only contributions 1341 // made in one direction!!! 1342 // the other contributions of this sample will be counted for the oposite ray! 1343 #if 0 1339 1344 if (ray.mOriginObject && 1340 1345 viewcell->GetPvs().GetSampleContribution(ray.mOriginObject, … … 1345 1350 ray.mRelativePvsContribution += contribution; 1346 1351 } 1352 #endif 1347 1353 } 1348 1354 } … … 1360 1366 if (ray.mTerminationObject) 1361 1367 viewcell->GetPvs().AddSample(ray.mTerminationObject, ray.mPdf); 1368 1369 #if 0 1362 1370 if (ray.mOriginObject) 1363 1371 viewcell->GetPvs().AddSample(ray.mOriginObject, ray.mPdf); 1372 #endif 1364 1373 } 1365 1374 } -
GTP/trunk/Lib/Vis/Preprocessing/src/default.env
r713 r718 183 183 184 184 #number of active view cells 185 active 3000185 active 4000 186 186 maxStaticMemory 40 187 187 … … 196 196 197 197 height 5.0 198 maxViewCells 3000198 maxViewCells 4000 199 199 200 200 #percentage of total visible objects where pvs is considered invalid -
GTP/trunk/Lib/Vis/Preprocessing/src/preprocessor.pro
r677 r718 46 46 RenderSimulator.cpp VspKdTree.cpp RayInfo.cpp RssTree.cpp RssPreprocessor.cpp \ 47 47 ViewCellsManager.cpp VspBspTree.cpp GlRenderer.cpp \ 48 PreprocessorThread.cpp Renderer.cpp Beam.cpp ViewCellsParser.cpp Tetrahedron3.cpp 48 PreprocessorThread.cpp Renderer.cpp Beam.cpp ViewCellsParser.cpp Tetrahedron3.cpp \ 49 VrmlExporter.cpp 49 50
Note: See TracChangeset
for help on using the changeset viewer.