Changeset 2234


Ignore:
Timestamp:
03/12/07 13:26:00 (17 years ago)
Author:
mattausch
Message:
 
Location:
GTP/trunk/Lib/Vis/Preprocessing/src
Files:
2 edited

Legend:

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

    r2176 r2234  
    5050                that lies in the axis. 
    5151        */ 
    52         float ExtrapOrigin(const int axis) const; 
     52        inline float ExtrapOrigin(const int axis) const; 
    5353        /** Extracts the scalar of the termination point of the ray segment 
    5454                that lies in the axis. 
    5555        */ 
    56         float ExtrapTermination(const int axis) const; 
     56        inline float ExtrapTermination(const int axis) const; 
    5757         
    5858        /** Extracts the starting point of the ray segment. 
  • GTP/trunk/Lib/Vis/Preprocessing/src/VssRay.h

    r2233 r2234  
    189189  } 
    190190                                                                                         
    191   bool HasPosDir(const int axis) const { return mFlags & (1<<axis); } 
     191  inline bool HasPosDir(const int axis) const { return mFlags & (1<<axis); } 
    192192 
    193193  char Flags() const { return mFlags;}  void SetFlags(char orFlag) { mFlags |= orFlag;} 
Note: See TracChangeset for help on using the changeset viewer.