https://github.com/lpg2709/simpleterraingenerator
Simple use in a mesh to generate land with Simplex Noise 2D.
https://github.com/lpg2709/simpleterraingenerator
c exemple freeglut glut opengl perlin perlin-noise simplex-noise study
Last synced: 2 months ago
JSON representation
Simple use in a mesh to generate land with Simplex Noise 2D.
- Host: GitHub
- URL: https://github.com/lpg2709/simpleterraingenerator
- Owner: lpg2709
- Created: 2021-04-14T00:07:09.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2021-04-14T00:13:36.000Z (about 4 years ago)
- Last Synced: 2025-04-02T04:55:38.655Z (2 months ago)
- Topics: c, exemple, freeglut, glut, opengl, perlin, perlin-noise, simplex-noise, study
- Language: C
- Homepage:
- Size: 11.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# SimpleTerrainGenerator
Simple implementation of Perlin Noise in a mesh to generate land with Simplex Noise 2D.
## Dependences
- [Freeglut](http://freeglut.sourceforge.net/)
## Compile
```bash
make
./SimpleTerrainGenerator
```# Acknowledgment
- [Simplex Noise 2D implementation in C](https://gist.github.com/nowl/828013) by [nowl](https://gist.github.com/nowl)## References
- [Simplex noise](https://en.wikipedia.org/wiki/Simplex_noise)
- [Simplex noise demystified](https://weber.itn.liu.se/~stegu/simplexnoise/simplexnoise.pdf)