Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lecopivo/WaterSurfaceWavelets
https://github.com/lecopivo/WaterSurfaceWavelets
Last synced: 27 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/lecopivo/WaterSurfaceWavelets
- Owner: lecopivo
- License: mit
- Created: 2018-02-05T10:24:59.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2020-02-18T20:22:48.000Z (almost 5 years ago)
- Last Synced: 2024-08-04T02:10:49.923Z (4 months ago)
- Language: C++
- Size: 8.88 MB
- Stars: 138
- Watchers: 16
- Forks: 27
- Open Issues: 4
-
Metadata Files:
- Readme: README.org
- License: LICENSE
Awesome Lists containing this project
- AwesomeCppGameDev - WaterSurfaceWavelets
README
* Water Surface Wavelets
[[file:img/teaser.gif]]
** Installation
Download repository:
#+BEGIN_SRC bash
git clone --recursive https://github.com/lecopivo/WaterSurfaceWavelets.git
#+END_SRCInstall prerequisites(takes couple of minutes):
#+BEGIN_SRC bash
pushd vcpkg
./bootstrap-vcpkg.sh
./vcpkg install magnum-integration[imgui]
popd
#+END_SRCTo build:
#+BEGIN_SRC bash
mkdir -p build/release
pushd build/release
cmake ../.. -DCMAKE_BUILD_TYPE=Release -DCMAKE_TOOLCHAIN_FILE=../../vcpkg/scripts/buildsystems/vcpkg.cmake
make -j
popd
#+END_SRCAnd to run an example:
#+BEGIN_SRC bash
./build/release/src/visualization/Demo
#+END_SRC