Ignore:
Timestamp:
09/03/06 03:13:29 (18 years ago)
Author:
mattausch
Message:

started osp mesh construction for obj files. Introduced new primitive faceintersectable

File:
1 edited

Legend:

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

    r1233 r1314  
    1111class KdNode; 
    1212class BvhNode; 
     13struct Face; 
     14 
    1315 
    1416/** 
     
    5759        T *mItem; 
    5860}; 
     61 
    5962 
    6063template<typename T> 
     
    161164}; 
    162165 
     166class FaceIntersectable: public IntersectableWrapper<Face> 
     167{ 
     168public: 
     169        FaceIntersectable(Face *item): 
     170        IntersectableWrapper<Face>(item) {} 
     171 
     172        int Type() const 
     173        { 
     174                return Intersectable::FACE_INTERSECTABLE; 
     175        } 
     176}; 
     177 
     178 
    163179} 
    164180 
Note: See TracChangeset for help on using the changeset viewer.