Skip to content

Commit 4456658

Browse files
committed
Merge remote-tracking branch 'origin/Development' into Development
2 parents 3f9ff6e + c25da3c commit 4456658

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/com/generation/SimplexNoise.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public SimplexNoise(int largestFeature, double persistence, long seed) {
3636

3737
this.octaves[index] = new SimplexNoiseOctave(random.nextInt());
3838
this.frequencys[index] = Math.pow(2, index);
39-
this.amplitudes[index] = Math.pow(persistence, (double)octaveCount - index);
39+
this.amplitudes[index] = Math.pow(persistence, (double) octaveCount - index);
4040
}
4141
}
4242

@@ -103,7 +103,7 @@ public double getNoise(int x, int y, int z) {
103103
for (int index = 0; index < this.octaves.length; index++) {
104104

105105
double frequency = Math.pow(2, index);
106-
double amplitude = Math.pow(this.persistance, (double)this.octaves.length - index);
106+
double amplitude = Math.pow(this.persistance, (double) this.octaves.length - index);
107107

108108
result += this.octaves[index].noise(x / frequency, y / frequency, z / frequency) * amplitude;
109109
}

0 commit comments

Comments
 (0)