perlin2d 0.2.0

Lightning fast 2D Perlin Noise generator
Documentation
<h1 align="center">perlin2d</h1>
<div align="center">

  <img alt="GitHub" src="https://img.shields.io/github/license/gp-97/perlin">

</div>
<div align="center">
  
  [![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)

</div>

### 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);
```