Changeset 2234 for GTP/trunk/Lib/Vis/Preprocessing/src
- Timestamp:
- 03/12/07 13:26:00 (18 years ago)
- Location:
- GTP/trunk/Lib/Vis/Preprocessing/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
GTP/trunk/Lib/Vis/Preprocessing/src/RayInfo.h
r2176 r2234 50 50 that lies in the axis. 51 51 */ 52 float ExtrapOrigin(const int axis) const;52 inline float ExtrapOrigin(const int axis) const; 53 53 /** Extracts the scalar of the termination point of the ray segment 54 54 that lies in the axis. 55 55 */ 56 float ExtrapTermination(const int axis) const;56 inline float ExtrapTermination(const int axis) const; 57 57 58 58 /** Extracts the starting point of the ray segment. -
GTP/trunk/Lib/Vis/Preprocessing/src/VssRay.h
r2233 r2234 189 189 } 190 190 191 bool HasPosDir(const int axis) const { return mFlags & (1<<axis); }191 inline bool HasPosDir(const int axis) const { return mFlags & (1<<axis); } 192 192 193 193 char Flags() const { return mFlags;} void SetFlags(char orFlag) { mFlags |= orFlag;}
Note: See TracChangeset
for help on using the changeset viewer.