Ignore:
Timestamp:
05/24/08 11:59:35 (16 years ago)
Author:
mattausch
Message:

enabled view cell visualization

File:
1 edited

Legend:

Unmodified
Added
Removed
  • GTP/trunk/Lib/Vis/Preprocessing/src/IntelRayCaster.cpp

    r2606 r2705  
    429429  Vector3 max = sbox.Max(); 
    430430   
    431   int packets = rays.size() / 16; 
     431  int packets = (int)rays.size() / 16; 
    432432   
    433433  int i, j, k = 0; 
     
    460460 
    461461void 
    462 IntelRayCaster::CastRays( 
    463                          SimpleRayContainer &rays, 
    464                          VssRayContainer &vssRays, 
    465                          const AxisAlignedBox3 &sbox, 
    466                          const bool castDoubleRay, 
    467                          const bool pruneInvalidRays ) 
    468 { 
    469  
    470   int buckets = rays.size()/16; 
     462IntelRayCaster::CastRays(SimpleRayContainer &rays, 
     463                                                 VssRayContainer &vssRays, 
     464                                                 const AxisAlignedBox3 &sbox, 
     465                                                 bool castDoubleRay, 
     466                                                 bool pruneInvalidRays) 
     467{ 
     468 
     469  int buckets = (int)rays.size() / 16; 
    471470  int offset = 0; 
    472471 
Note: See TracChangeset for help on using the changeset viewer.