Ignore:
Timestamp:
04/28/06 18:42:54 (18 years ago)
Author:
mattausch
Message:
 
File:
1 edited

Legend:

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

    r840 r860  
    1515#include "Beam.h" 
    1616 
     17using namespace GtpVisibilityPreprocessor { 
    1718 
    1819 
     
    710711                        AxisAlignedBox3 box; 
    711712                        box = tree.GetBBox(leaf); 
    712                         box.AddBoxToMesh(mesh); 
     713                        IncludeBoxInMesh(box, *mesh); 
    713714 
    714715                        if (tree.ValidLeaf(leaf)) { 
     
    813814                box = tree.GetBBox(leaf); 
    814815                Mesh *mesh = new Mesh; 
    815                 box.AddBoxToMesh(mesh); 
     816                IncludeBoxInMesh(box, *mesh); 
    816817                 
    817818                // get 4 corners of the ray directions 
     
    12441245                box = tree.GetShrankedBBox(leaf); 
    12451246                Mesh *mesh = new Mesh; 
    1246                 box.AddBoxToMesh(mesh); 
     1247                IncludeBoxInMesh(box, *mesh); 
    12471248                 
    12481249                // get 4 corners of the ray directions 
     
    13351336        CLEAR_CONTAINER(polys); 
    13361337} 
     1338 
     1339} 
Note: See TracChangeset for help on using the changeset viewer.