Changeset 487 for trunk/VUT/GtpVisibilityPreprocessor/src/Plane3.h
- Timestamp:
- 01/01/06 06:25:55 (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/VUT/GtpVisibilityPreprocessor/src/Plane3.h
r485 r487 81 81 const float dv = DotProd(v, mNormal); 82 82 83 // does not intersect 83 // does not intersect or coincident 84 84 if (signum(dv) == 0) 85 return -1;85 return 0; 86 86 87 87 return - Distance(a) / dv; // TODO: could be done more efficiently
Note: See TracChangeset
for help on using the changeset viewer.