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/VrmlExporter.cpp

    r840 r860  
    1515#include "Beam.h" 
    1616 
     17using namespace GtpVisibilityPreprocessor { 
    1718 
    1819 
     
    728729                        AxisAlignedBox3 box; 
    729730                        box = tree.GetBBox(leaf); 
    730                         box.AddBoxToMesh(mesh); 
     731                        IncludeBoxInMesh(box, *mesh); 
    731732 
    732733                        if (tree.ValidLeaf(leaf))  
     
    858859                                box = tree.GetBBox(leaf); 
    859860                                Mesh *mesh = new Mesh; 
    860                                 box.AddBoxToMesh(mesh); 
     861                                IncludeBoxInMesh(box, *mesh); 
    861862 
    862863                                // get 4 corners of the ray directions 
     
    13141315                box = tree.GetShrankedBBox(leaf); 
    13151316                Mesh *mesh = new Mesh; 
    1316                 box.AddBoxToMesh(mesh); 
     1317                IncludeBoxInMesh(box, *mesh); 
    13171318                 
    13181319                // get 4 corners of the ray directions 
     
    14041405        CLEAR_CONTAINER(polys); 
    14051406} 
     1407 
     1408} 
Note: See TracChangeset for help on using the changeset viewer.