PerlinNoise constructor

PerlinNoise({
  1. int seed = 1337,
  2. double frequency = .01,
  3. Interp interp = Interp.quintic,
})

Implementation

PerlinNoise({
  this.seed = 1337,
  this.frequency = .01,
  this.interp = Interp.quintic,
});