Ignore:
Timestamp:
02/01/07 11:18:15 (17 years ago)
Author:
mattausch
Message:
 
File:
1 edited

Legend:

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

    r2069 r2070  
    12461246 
    12471247        SimpleRayContainer::const_iterator rit, rit_end = rays.end(); 
    1248  
     1248cout << "here1 " << vssRays.size()<<endl; 
    12491249        SimpleRayContainer rayBucket; 
    12501250        int i = 0; 
     
    12761276         
    12771277                if ((int)rays.size() > 100000 && i % 100000 == 0) 
    1278                   cout<<"\r"<<i<<"/"<<(int)rays.size()<<"\r"; 
    1279         } 
    1280      
     1278                        cout << "here2 " << vssRays.size()<<endl; 
     1279                  //cout<<"\r"<<i<<"/"<<(int)rays.size()<<"\r"; 
     1280        } 
     1281    cout << "here3 " << vssRays.size()<<endl; 
    12811282        // cast rest of rays 
    12821283        SimpleRayContainer::const_iterator sit, sit_end = rayBucket.end(); 
     
    13051306        cout << "here5 " << vssRays.size()<<endl; 
    13061307 
    1307         if (1) { 
     1308        int m = 850000; 
     1309 
     1310        if (1 && (int)rays.size() > m + 50) { 
    13081311          VssRayContainer tmpRays; 
    1309           int m = 700000; 
    1310            
     1312                   
    13111313          for (int i=m; i < m+20; i++) { 
    13121314                  if (vssRays[i]) 
    1313                 tmpRays.push_back(vssRays[i]);           
     1315                  {cout<<"e"; 
     1316                tmpRays.push_back(vssRays[i]); 
     1317                  } 
     1318                  else cout <<"d"; 
    13141319          } 
    13151320          ExportRays("sorted_rays2.x3d", tmpRays, 200); 
Note: See TracChangeset for help on using the changeset viewer.