Ignore:
Timestamp:
02/09/07 14:39:35 (18 years ago)
Author:
mattausch
Message:
 
Location:
GTP/trunk/Lib/Vis/Preprocessing/src
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • GTP/trunk/Lib/Vis/Preprocessing/src/BoundingBoxConverter.h

    r2066 r2111  
    1616}; 
    1717 
    18 /** Class used to assign unique indices to objects using a  
    19         comparison of bounding boxes. 
     18/** This class assigns unique indices to objects by 
     19    comparing bounding boxes. 
    2020*/ 
    2121class BoundingBoxConverter 
  • GTP/trunk/Lib/Vis/Preprocessing/src/Preprocessor.cpp

    r2076 r2111  
    265265 
    266266 
    267 bool Preprocessor::LoadBinaryObj(const string filename, 
     267bool Preprocessor::LoadBinaryObj(const string &filename, 
    268268                                                                 SceneGraphNode *root, 
    269269                                                                 vector<FaceParentInfo> *parents) 
     
    277277        cout << "binary obj dump available, loading " << filename.c_str() << endl; 
    278278         
    279         // table for vertices 
    280         VertexContainer vertices;  
    281          
    282         if (parents) 
    283                 cout << "using face parents" << endl; 
    284         else 
    285                 cout << "not using face parents" << endl; 
    286  
    287279        // read in triangle size 
    288280        int numTriangles; 
     
    309301                root->mGeometry.push_back(obj); 
    310302                 
    311                 i ++; 
    312          
    313                 if (i % 500000 == 499999) 
     303                if ((i ++) % 500000 == 499999) 
    314304                         cout<<"\r"<<i<<"/"<<numTriangles<<"\r"; 
    315305        } 
  • GTP/trunk/Lib/Vis/Preprocessing/src/Preprocessor.h

    r2105 r2111  
    260260protected: 
    261261 
    262         bool LoadBinaryObj(const string filename, 
     262        bool LoadBinaryObj(const string &filename, 
    263263                                           SceneGraphNode *root, 
    264264                                           vector<FaceParentInfo> *parents); 
  • GTP/trunk/Lib/Vis/Preprocessing/src/ViewCellsManager.h

    r2105 r2111  
    286286        virtual void GetPrVS(const Vector3 &viewPoint, PrVs &prvs, const float filterWidth); 
    287287   
    288         /** Get a viewcell containing the specified point  
     288        /** Get a viewcell containing the specified view point. 
    289289                @param active if the active or elementary view cell should be returned. 
    290290        */ 
Note: See TracChangeset for help on using the changeset viewer.