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

https://github.com/termoose/perlinnoise

Simple perlin noise implementation (1D)
https://github.com/termoose/perlinnoise

c-plus-plus noise perlin-noise perlin-terrain terrain-generation

Last synced: 2 months ago
JSON representation

Simple perlin noise implementation (1D)

Awesome Lists containing this project

README

        

# PerlinNoise

## Usage

`#include PerlinNoise.h` anywhere in your project.

```cpp
PerlinNoise generator(5.0, 2);
generator.get_noise(500);
```