Changeset 2111 for GTP/trunk/Lib/Vis/Preprocessing/src
- Timestamp:
- 02/09/07 14:39:35 (18 years ago)
- Location:
- GTP/trunk/Lib/Vis/Preprocessing/src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
GTP/trunk/Lib/Vis/Preprocessing/src/BoundingBoxConverter.h
r2066 r2111 16 16 }; 17 17 18 /** Class used to assign unique indices to objects using a19 comparison ofbounding boxes.18 /** This class assigns unique indices to objects by 19 comparing bounding boxes. 20 20 */ 21 21 class BoundingBoxConverter -
GTP/trunk/Lib/Vis/Preprocessing/src/Preprocessor.cpp
r2076 r2111 265 265 266 266 267 bool Preprocessor::LoadBinaryObj(const string filename,267 bool Preprocessor::LoadBinaryObj(const string &filename, 268 268 SceneGraphNode *root, 269 269 vector<FaceParentInfo> *parents) … … 277 277 cout << "binary obj dump available, loading " << filename.c_str() << endl; 278 278 279 // table for vertices280 VertexContainer vertices;281 282 if (parents)283 cout << "using face parents" << endl;284 else285 cout << "not using face parents" << endl;286 287 279 // read in triangle size 288 280 int numTriangles; … … 309 301 root->mGeometry.push_back(obj); 310 302 311 i ++; 312 313 if (i % 500000 == 499999) 303 if ((i ++) % 500000 == 499999) 314 304 cout<<"\r"<<i<<"/"<<numTriangles<<"\r"; 315 305 } -
GTP/trunk/Lib/Vis/Preprocessing/src/Preprocessor.h
r2105 r2111 260 260 protected: 261 261 262 bool LoadBinaryObj(const string filename,262 bool LoadBinaryObj(const string &filename, 263 263 SceneGraphNode *root, 264 264 vector<FaceParentInfo> *parents); -
GTP/trunk/Lib/Vis/Preprocessing/src/ViewCellsManager.h
r2105 r2111 286 286 virtual void GetPrVS(const Vector3 &viewPoint, PrVs &prvs, const float filterWidth); 287 287 288 /** Get a viewcell containing the specified point288 /** Get a viewcell containing the specified view point. 289 289 @param active if the active or elementary view cell should be returned. 290 290 */
Note: See TracChangeset
for help on using the changeset viewer.