protected final FloatInterpolation interpolator;
public SimplexNoiseLayer2(int width, int height, int density, final Random rand, final FloatInterpolation interpolator) {
this.width = width;
this.height = height;
this.values = new MatrixN2f(width, height);
this.density = density;
this.rand = rand;
this.interpolator = interpolator;
}