https://github.com/mrk21/terrain-generation-prototyping
Terrain generation prototyping
https://github.com/mrk21/terrain-generation-prototyping
cpp libnoise opencv opengl
Last synced: 3 months ago
JSON representation
Terrain generation prototyping
- Host: GitHub
- URL: https://github.com/mrk21/terrain-generation-prototyping
- Owner: mrk21
- License: mit
- Created: 2019-10-10T07:30:05.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-06-16T15:54:22.000Z (about 6 years ago)
- Last Synced: 2025-12-30T22:37:25.158Z (6 months ago)
- Topics: cpp, libnoise, opencv, opengl
- Language: C++
- Size: 3.51 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Terrain generation prototyping
## Dependencies
- [Boost](https://www.boost.org/): 1.71.x
- [libnoise](http://libnoise.sourceforge.net/): 1.0.x
- [OpenCV](https://opencv.org/): 4.x
- [OpenGL](https://opengl.org/): 4.1
- [GLFW](https://www.glfw.org/): 3.x
- [glm](https://glm.g-truc.net/0.9.9/index.html)
- [g-truc/glm: OpenGL Mathematics (GLM)](https://github.com/g-truc/glm)
## Setup
```sh
# install dependencies
brew install boost
brew install opencv
brew install glfw
brew install glm
# build
mkdir gen
cd gen
cmake ..
make
./src/perlin_worms
```