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

    r840 r860  
    1515#include <stack> 
    1616 
     17using namespace GtpVisibilityPreprocessor { 
    1718 
    1819 
     
    819820        // compute bounding box 
    820821        if (!forcedBoundingBox) 
    821                 Polygon3::IncludeInBox(*polys, mBox); 
     822                mBox.Include(*polys); 
    822823 
    823824        //-- store rays 
     
    13081309         
    13091310        // create bounding box of region 
    1310         Polygon3::IncludeInBox(polys, box); 
     1311        box.Include(polys); 
    13111312         
    13121313        int objectsBack = 0, objectsFront = 0; 
     
    13511352         
    13521353                // create bounding box of region 
    1353                 Polygon3::IncludeInBox(*data.mPolygons, box); 
     1354                box.Include(*data.mPolygons); 
    13541355 
    13551356                const int axis = box.Size().DrivingAxis(); 
     
    29692970{ 
    29702971        box.Initialize(); 
    2971         Polygon3::IncludeInBox(mPolys, box); 
     2972        box.Include(mPolys); 
    29722973} 
    29732974 
     
    33323333        } 
    33333334} 
     3335 
     3336} 
Note: See TracChangeset for help on using the changeset viewer.