- Timestamp:
- 07/31/06 08:52:39 (18 years ago)
- Location:
- GTP/trunk/Lib/Vis
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
GTP/trunk/Lib/Vis/QtRenderer/QtGlRenderer.cpp
r1166 r1171 1511 1511 { 1512 1512 ViewCell *vc = viewcells[i]; 1513 const int p = vc->GetPvs().Count Pvs();1513 const int p = vc->GetPvs().CountObjectsInPvs(); 1514 1514 if (p > maxPvs) 1515 1515 maxPvs = p; … … 1527 1527 c = vc->GetColor(); 1528 1528 else { 1529 const float importance = (float)vc->GetPvs().Count Pvs() / (float)maxPvs;1529 const float importance = (float)vc->GetPvs().CountObjectsInPvs() / (float)maxPvs; 1530 1530 c = RgbColor(importance, 1.0f - importance, 0.0f); 1531 1531 }
Note: See TracChangeset
for help on using the changeset viewer.