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)
- Host: GitHub
- URL: https://github.com/termoose/perlinnoise
- Owner: termoose
- Created: 2012-01-04T21:06:27.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2018-05-07T14:34:36.000Z (about 7 years ago)
- Last Synced: 2025-04-05T19:51:17.060Z (3 months ago)
- Topics: c-plus-plus, noise, perlin-noise, perlin-terrain, terrain-generation
- Language: C++
- Size: 3.91 KB
- Stars: 12
- Watchers: 2
- 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);
```