Changeset 3334 for GTP/trunk/App/Demos
- Timestamp:
- 03/06/09 17:39:01 (16 years ago)
- Location:
- GTP/trunk/App/Demos/Vis/FriendlyCulling
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
GTP/trunk/App/Demos/Vis/FriendlyCulling/Converter.vcproj
r3292 r3334 156 156 AdditionalLibraryDirectories="libs\Zlib\lib" 157 157 IgnoreDefaultLibraryNames="libCMT" 158 GenerateDebugInformation=" false"158 GenerateDebugInformation="true" 159 159 SubSystem="1" 160 160 LargeAddressAware="2" -
GTP/trunk/App/Demos/Vis/FriendlyCulling/Converter/main.cpp
r3295 r3334 14 14 15 15 cout << "converting obj to dem format" << endl; 16 #if 1 17 if (!converter.LoadMaterials(model_path + argv[3]))16 #if 1 // use this path for converting a file with materials 17 if (argc > 3) 18 18 { 19 cerr << "loading materials failed" << endl; 19 if (!converter.LoadMaterials(model_path + argv[3])) 20 { 21 cerr << "loading materials failed" << endl; 20 22 21 std::cin.get(); 22 exit(0); 23 std::cin.get(); 24 exit(0); 25 } 23 26 } 24 27 … … 30 33 exit(0); 31 34 } 32 #else 35 #else // use this bath to convert the pompeii model 33 36 34 37 //const int numFiles = 879; -
GTP/trunk/App/Demos/Vis/FriendlyCulling/default.env
r3331 r3334 13 13 #filename=mypompeii 14 14 #bvhname=mypompeii 15 filename=pompeii/pompeii_full15 #filename=pompeii/pompeii_full 16 16 #filename=pompeii/pompeii_part 17 #filename=city18 #bvhname=city17 filename=city 18 bvhname=city 19 19 useLODs=1 20 20 # shadow map size … … 77 77 camPosition=483.398f 242.364f 186.078f 78 78 # pompeii view point 79 camPosition=1300.0f -2500.0f 10.0f79 #camPosition=1300.0f -2500.0f 10.0f 80 80 # pompeii problematic 81 81 #camPosition=627.003 -1725.33 25.2
Note: See TracChangeset
for help on using the changeset viewer.