An open API service indexing awesome lists of open source software.

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.

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)