A VR Viewer for fluid simulations of dinosaur track morphology.
DinoVR is based on the MinVR framework (https://github.com/MinVR/MinVR) and requires it to be built and installed on your system. Detailed instructions on how to build MinVR for your platform can b4e found on the github page of the repository.
DinoVR is built using the cross-platform CMake tool, which is also used in the MinVR build process.
Here's a complete annotated list of steps to display your first DinoVR visualization.
git clone http://github.com/jonovotny/DinoVR
cd DinoVR
mkdir build
cd build
cmake-gui ..
Press the 'Configure' button. Then, select the Generator you would like to use from the list provided (e.g., Xcode, Visual Studio, Unix Makefiles). Click Done.
Wait for CMake to do an initial configuration. As part of this process Cmake will download and build the OpenGL Mathematics library (https://github.com/g-truc/glm), which might take a few minutes.
After the configuration is completed, press the Generate button. This is the step that will actually generate the Unix Makefiles, Visual Studio Solution File, or Xcode Project File needed to build DinoVR.
Click Open Project if you generated project files for an IDE, or if you generated Unix Makefiles return to your shell and the build directory. Now, build the project as you normally would in these enviornments.
For Xcode or Visual Studio click the triangle button
.
For Unix Makefiles type make
.