Ignore:
Timestamp:
01/24/07 01:33:39 (17 years ago)
Author:
mattausch
Message:
 
File:
1 edited

Legend:

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

    r2017 r2048  
    21142114                BvhLeaf *leaf = static_cast<BvhLeaf *>(node); 
    21152115                const AxisAlignedBox3 box = leaf->GetBoundingBox(); 
    2116                 stream << "<Leaf" 
     2116                stream << "<Leaf id=\"" << node->GetId() << "\"" 
    21172117                           << " min=\"" << box.Min().x << " " << box.Min().y << " " << box.Min().z << "\"" 
    21182118                           << " max=\"" << box.Max().x << " " << box.Max().y << " " << box.Max().z << "\"" 
     
    21302130                const AxisAlignedBox3 box = interior->GetBoundingBox(); 
    21312131 
    2132                 stream << "<Interior" 
     2132                stream << "<Interior id=\"" << node->GetId() << "\"" 
    21332133                           << " min=\"" << box.Min().x << " " << box.Min().y << " " << box.Min().z << "\"" 
    21342134                           << " max=\"" << box.Max().x << " " << box.Max().y << " " << box.Max().z 
Note: See TracChangeset for help on using the changeset viewer.