Camil Champin

Results 2 issues of Camil Champin

``` use noise::{NoiseFn, Perlin}; fn main () { let perlin = Perlin::new(); let val = perlin.get([0.4, 0.7, 0.5, 0.5]); println!("{}", val) } ``` This prints 1 regardless of parameters passed...

The following code generates a stack overflow, despite containing no explicitly recursive code. ```rust extern crate lazy_static; // 1.4.0 use lazy_static::lazy_static; const SIZE : usize = 1_000_000; const U0 :...