Changeset 2705 for GTP/trunk/Lib/Vis/Preprocessing/src/HavranRayCaster.cpp
- Timestamp:
- 05/24/08 11:59:35 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
GTP/trunk/Lib/Vis/Preprocessing/src/HavranRayCaster.cpp
r2699 r2705 399 399 Vector3 max = sbox.Max(); 400 400 401 int packets = rays.size() / 16;401 int packets = (int)rays.size() / 16; 402 402 403 403 int i, k = 0; … … 431 431 const bool pruneInvalidRays ) 432 432 { 433 int buckets = rays.size()/16;433 int buckets = (int)rays.size()/16; 434 434 int offset = 0; 435 435
Note: See TracChangeset
for help on using the changeset viewer.