Added space after typecast expression

Co-Authored-By: Libin Yang <contact@yanglibin.info>
This commit is contained in:
Abhijay Kumar 2019-05-23 00:21:14 +05:30 committed by GitHub
parent b6772c5fb1
commit 5358f8ddc9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -36,7 +36,7 @@ public class SimplexNoise {
this.octaves[index] = new SimplexNoiseOctave(random.nextInt());
this.frequencys[index] = Math.pow(2, index);
this.amplitudes[index] = Math.pow(persistence, (double)octaveCount - index);
this.amplitudes[index] = Math.pow(persistence, (double) octaveCount - index);
}
}