Ignore:
Timestamp:
03/11/07 16:14:59 (17 years ago)
Author:
mattausch
Message:
 
File:
1 edited

Legend:

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

    r2227 r2228  
    13431343 
    13441344#endif 
     1345#if VISUALIZE_SPLIT 
     1346        Exporter *exporter = Exporter::GetExporter("split.wrl"); 
     1347        exporter->ExportBox(box); 
     1348 
     1349                RayInfoContainer::const_iterator rit, rit_end = tData.mRays->end(); 
     1350 
     1351        for (rit = tData.mRays->begin(); rit != rit_end; ++ rit) 
     1352        { 
     1353                RayInfo rayInf = *rit; 
     1354 
     1355                VssRay *ray = rayInf.mRay; 
     1356                 
     1357                exporter->ExportIntersectable(GetParentObject(ray->mTerminationObject)); 
     1358 
     1359                AxisAlignedBox3 candidatePlane; 
     1360                exporter->ExportBox(candidatePlane); 
     1361        } 
     1362    delete exporter; 
     1363#endif 
    13451364        for (ci = mLocalSubdivisionCandidates->begin(); ci != ci_end; ++ ci) 
    13461365        { 
Note: See TracChangeset for help on using the changeset viewer.