Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Source/smokeview/options.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
//#define pp_READ_KEYBOARD // read keyboard in the command shell so the visualization can be paused
//#define pp_GETMESH_TEST
//#define pp_COMPRESS // new compression code
//#define pp_GEOM_EXACT // use exact coorindates for cases with more than 100 meshes

//*** options: windows

Expand Down
2 changes: 2 additions & 0 deletions Source/smokeview/readsmv.c
Original file line number Diff line number Diff line change
Expand Up @@ -2995,10 +2995,12 @@ int ReadSMV_Configure(){
//*** hide_scene when moving objects if there are are lot of OBSTs or geometry triangles
if(global_scase.ntotal_blockages > 250000 || GetNCGeomTriangles() > 250000)hide_scene = 1;

#ifdef pp_GEOM_EXACT
if(global_scase.meshescoll.nmeshes > 100){
blocklocation = BLOCKlocation_exact;
glui_use_cfaces = 0;
}
#endif

PRINT_TIMER(timer_readsmv, "update trianglesfaces");

Expand Down
Loading