Ignore:
Timestamp:
05/02/06 10:26:43 (18 years ago)
Author:
mattausch
Message:

added pvs

File:
1 edited

Legend:

Unmodified
Added
Removed
  • GTP/trunk/Lib/Vis/Preprocessing/src/ViewCell.cpp

    r863 r870  
    20332033                stream << "active=\"" << viewCell->IsActive() << "\" "; 
    20342034                stream << "mergecost=\"" << viewCell->GetMergeCost() << "\" "; 
     2035                stream << "pvs=\""; 
     2036 
     2037                //-- NOTE: do not export pvss for interior view cells because 
     2038                // they can be completely reconstructed from the leaf pvss 
     2039                if (0) 
     2040                        ExportPvs(viewCell, stream); 
    20352041                 
    2036                 //-- NOTE: do not export pvss for interior view cells because 
    2037                 // they can be compeletely reconstructed from the leaf pvss 
    2038                 if (0) 
    2039                 { 
    2040                         stream << "pvs=\""; 
    2041                         ExportPvs(viewCell, stream); 
    2042                 } 
    2043  
    20442042                stream << "\" >" << endl; 
    20452043 
Note: See TracChangeset for help on using the changeset viewer.