Ignore:
Timestamp:
09/13/06 18:03:30 (18 years ago)
Author:
mattausch
Message:

worked on global object sorting

File:
1 edited

Legend:

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

    r1302 r1359  
    280280    delete root; 
    281281         
    282   root = new VssTreeLeaf(NULL, rays.size()); 
     282  root = new VssTreeLeaf(NULL, (int)rays.size()); 
    283283  // first construct a leaf that will get subdivide 
    284284  VssTreeLeaf *leaf = (VssTreeLeaf *) root; 
     
    321321  cout<<"Dirr Bbox = "<<dirBBox<<endl; 
    322322 
    323   stat.rays = leaf->rays.size(); 
     323  stat.rays = (int)leaf->rays.size(); 
    324324  leaf->UpdatePvsSize(); 
    325325  leaf->ComputeEntropyImportance(); 
Note: See TracChangeset for help on using the changeset viewer.