Changeset 432 for trunk/VUT/GtpVisibilityPreprocessor/src/RayInfo.cpp
- Timestamp:
- 11/25/05 08:10:20 (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/VUT/GtpVisibilityPreprocessor/src/RayInfo.cpp
r420 r432 3 3 #include "VssRay.h" 4 4 5 RayInfo::RayInfo(): mRay(NULL) 5 RayInfo::RayInfo(): mRay(NULL), mMinT(0), 6 #if USE_FIXEDPOINT_T 7 #define FIXEDPOINT_ONE 0x7FFE 8 // mMaxT(0xFFFF) 9 mMaxT(FIXEDPOINT_ONE) 10 #else 11 mMaxT(1.0f) 12 #endif 6 13 {} 7 14
Note: See TracChangeset
for help on using the changeset viewer.