Пример #1
0
 public NoiseInstance2(SimplexCellularOctave noise, int f1Index,
                       int f2Index)
 {
     this.noise   = noise;
     this.f1Index = f1Index;
     this.f2Index = f2Index;
 }
Пример #2
0
 public SimplexCellularNoise(long seed)
 {
     for (int i = 0; i < 5; i++)
     {
         octaves[i] = new SimplexCellularOctave(seed + i);
     }
 }