perlin2d

GitHub
[![Status](https://img.shields.io/badge/status-active-success.svg)]() [![GitHub Issues](https://img.shields.io/github/issues/gp-97/perlin2d.svg)](https://github.com/gp-97/perlin2d/issues) [![GitHub Pull Requests](https://img.shields.io/github/issues-pr/gp-97/perlin2d.svg)](https://github.com/gp-97/perlin2d/pulls) ![Crates.io (recent)](https://img.shields.io/crates/dr/perlin2d?style=plastic)

Example usage

```rust // For example, to generate a Perlin noise 2D terrain: use perlin2d::PerlinNoise2D;

let perlin = PerlinNoise2D::new(6, 10.0, 0.5, 1.0, 2.0, (100.0, 100.0), 101); let noise = perlin.get_noise(5.0, 10.0); ```