Ignore:
Timestamp:
11/25/05 14:45:50 (19 years ago)
Author:
bittner
Message:

vssbsp merge, tab change

File:
1 edited

Legend:

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

    r431 r434  
    136136  Vector3 GetNormalizedDir() const { return (mTermination - mOrigin)*mInvSize; } 
    137137 
     138        Vector3 Extrap(const float t) const { 
     139                return GetOrigin() + t * GetDir(); 
     140        } 
     141         
    138142        float GetDirParametrization(const int axis) const; 
    139143         
     
    200204      } 
    201205  } 
     206 
     207        static Vector3 
     208        GetDirection(const float a, const float b) { 
     209                return Vector3(sin(a), sin(b), cos(a)); 
     210        } 
     211 
    202212}; 
    203213 
Note: See TracChangeset for help on using the changeset viewer.