- Timestamp:
- 07/10/06 09:40:20 (18 years ago)
- Location:
- GTP/trunk/Lib/Vis/Preprocessing/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
GTP/trunk/Lib/Vis/Preprocessing/src/ViewCellsManager.cpp
r1106 r1107 5291 5291 cout << "exporting object space partition ... "; 5292 5292 5293 if ( mExportGeometry)5293 if (0 && mExportGeometry) 5294 5294 { 5295 5295 exporter->ExportGeometry(objects); -
GTP/trunk/Lib/Vis/Preprocessing/src/VrmlExporter.cpp
r1106 r1107 655 655 ospTree.CollectLeaves(leaves); 656 656 657 mUseForcedMaterial = true; 658 657 659 vector<KdLeaf *>::const_iterator it, it_end = leaves.end(); 658 660 659 661 for (it = leaves.begin(); it != it_end; ++ it) 660 662 { 663 SetWireframe(); 661 664 ExportBox(ospTree.GetBBox(*it)); 665 666 SetForcedMaterial(RandomMaterial()); 667 668 ExportGeometry((*it)->mObjects); 662 669 } 663 670 … … 1176 1183 if (1) 1177 1184 { 1185 // export using native or random material 1178 1186 for (oit = objects.begin(); oit != oit_end; ++ oit) 1179 1187 { 1180 if ( 1)1188 if (0) 1181 1189 { 1182 1190 mUseForcedMaterial = true; -
GTP/trunk/Lib/Vis/Preprocessing/src/X3dExporter.cpp
r1106 r1107 1243 1243 ospTree.CollectLeaves(leaves); 1244 1244 1245 mUseForcedMaterial = true; 1246 1245 1247 vector<KdLeaf *>::const_iterator it, it_end = leaves.end(); 1246 1248 1247 1249 for (it = leaves.begin(); it != it_end; ++ it) 1248 1250 { 1251 SetWireframe(); 1249 1252 ExportBox(ospTree.GetBBox(*it)); 1253 1254 SetForcedMaterial(RandomMaterial()); 1255 1256 ExportGeometry((*it)->mObjects); 1250 1257 } 1251 1258
Note: See TracChangeset
for help on using the changeset viewer.