Ignore:
Timestamp:
08/12/05 18:42:20 (19 years ago)
Author:
mattausch
Message:

added bsp stuff

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/VUT/GtpVisibilityPreprocessor/src/Polygon3.h

    r236 r237  
    5757}; 
    5858 
     59// Overload << operator for C++-style output 
     60inline ostream& 
     61operator<< (ostream &s, const Polygon3 &A) 
     62{ 
     63        VertexContainer::const_iterator it; 
     64 
     65        s << "Polygon:\n"; 
     66         
     67        for (it = A.mVertices.begin(); it != A.mVertices.end(); ++it) 
     68                s << *it << endl; 
     69         
     70        return s; 
     71} 
    5972 
    6073 
Note: See TracChangeset for help on using the changeset viewer.