Ecosyste.ms: Awesome
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: about 2 months ago
JSON representation
Simple perlin noise implementation (1D)
- Host: GitHub
- URL: https://github.com/termoose/perlinnoise
- Owner: termoose
- Created: 2012-01-04T21:06:27.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2018-05-07T14:34:36.000Z (over 6 years ago)
- Last Synced: 2023-03-17T07:05:23.959Z (almost 2 years ago)
- Topics: c-plus-plus, noise, perlin-noise, perlin-terrain, terrain-generation
- Language: C++
- Size: 3.91 KB
- Stars: 10
- Watchers: 3
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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);
```