Ignore:
Timestamp:
08/27/06 23:39:50 (18 years ago)
Author:
mattausch
Message:

implemented bv hierarchy

File:
1 edited

Legend:

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

    r1286 r1287  
    51015101                        cout << "exporting view cells after post process ... "; 
    51025102 
    5103                         if (0) 
    5104                         { 
    5105                                 // export view space box 
    5106                                 exporter->SetWireframe(); 
    5107                                 exporter->ExportBox(mViewSpaceBox); 
    5108                                 exporter->SetFilled(); 
    5109                         } 
    5110  
    51115103                        if (mExportGeometry) 
    51125104                        { 
     
    51205112                        } 
    51215113 
    5122                         //exporter->SetFilled(); 
    5123  
    51245114                        // HACK: export without clip plane 
    51255115                        const bool b = mUseClipPlaneForViz; 
     
    51375127        } 
    51385128 
    5139         mHierarchyManager->ExportObjectSpaceHierarchyForViz(objects); 
    5140          
    5141         //-- export single view cells 
     5129        if (1) 
     5130        { 
     5131                // export final object partition 
     5132                Exporter *exporter = Exporter::GetExporter("final_object_partition.wrl"); 
     5133 
     5134                if (exporter) 
     5135                { 
     5136                        cout << "exporting object space hierarchy ... "; 
     5137                        mHierarchyManager->ExportObjectSpaceHierarchy(exporter, objects); 
     5138                 
     5139                        delete exporter; 
     5140                        cout << "finished" << endl; 
     5141                } 
     5142        } 
     5143         
     5144        // export pvss of some view cell 
    51425145        ExportPvs(objects, visRays); 
    51435146} 
Note: See TracChangeset for help on using the changeset viewer.