Ignore:
Timestamp:
05/02/08 17:49:52 (16 years ago)
Author:
mattausch
Message:

added obj version of full city

File:
1 edited

Legend:

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

    r2663 r2672  
    499499        else 
    500500        { 
     501                const int n = 1000; 
    501502                // parse view space hierarchy 
    502503                switch (mCurrentState) 
    503504                { 
    504505                case PARSE_VIEWSPACE_HIERARCHY: 
    505                         if ((++ nViewCells % 1000) == 0) 
     506                        if ((++ nViewCells % n) == 0) 
    506507                        { 
    507508                                cout << "\r" << nViewCells << " view cells parsed\r"; 
     
    511512                        break; 
    512513                case PARSE_OBJECTSPACE_HIERARCHY: 
    513                         if ((++ nObjects % 10000) == 0) 
     514                        if ((++ nObjects % n) == 0) 
    514515                                cout <<"\r" << nObjects << " objects parsed\r"; 
    515516                 
Note: See TracChangeset for help on using the changeset viewer.