Ignore:
Timestamp:
11/10/05 09:55:50 (19 years ago)
Author:
bittner
Message:

vsspreprocessor updates

File:
1 edited

Legend:

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

    r392 r401  
    290290}; 
    291291 
     292struct SimpleRay 
     293{ 
     294        Vector3 mOrigin; 
     295        Vector3 mDirection; 
     296        SimpleRay() {} 
     297        SimpleRay(const Vector3 &o, const Vector3 &d):mOrigin(o), mDirection(d) {} 
     298}; 
     299 
     300typedef vector<SimpleRay> SimpleRayContainer; 
    292301 
    293302#endif  
Note: See TracChangeset for help on using the changeset viewer.