Ignore:
Timestamp:
02/16/06 10:30:24 (19 years ago)
Author:
mattausch
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • GTP/trunk/Lib/Vis/Preprocessing/src/ViewCellBsp.h

    r611 r646  
    7272        */ 
    7373        PolygonContainer mPolys; 
     74 
     75        friend ostream &operator<<(ostream &s, const BspNodeGeometry &a) 
     76        { 
     77                PolygonContainer::const_iterator it, it_end = a.mPolys.end(); 
     78 
     79                for (it = a.mPolys.begin(); it != it_end; ++ it) 
     80                        s << *(*it) << endl; 
     81                return s << endl; 
     82        } 
     83 
    7484}; 
    7585 
     
    275285/** BSP interior node implementation  
    276286*/ 
    277 class BspInterior : public BspNode  
     287class BspInterior: public BspNode  
    278288{ 
    279289        friend class BspTree; 
Note: See TracChangeset for help on using the changeset viewer.