Ignore:
Timestamp:
10/03/06 22:03:58 (18 years ago)
Author:
mattausch
Message:

fixed bug with view space box

File:
1 edited

Legend:

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

    r1548 r1563  
    348348  } else { 
    349349        mRoots.resize(1); 
    350         RssTreeLeaf *leaf = new RssTreeLeaf(NULL, rays.size()); 
     350        RssTreeLeaf *leaf = new RssTreeLeaf(NULL, (int)rays.size()); 
    351351        leaf->bbox.Initialize(); 
    352352        leaf->dirBBox.Initialize(); 
     
    18971897  } 
    18981898 
    1899   return rays.size(); 
     1899  return (int)rays.size(); 
    19001900} 
    19011901 
Note: See TracChangeset for help on using the changeset viewer.