Magic numbers are for mental patients.

This commit is contained in:
2023-03-14 13:10:05 -04:00
parent bbbf0c4160
commit e7ceeac7b8
+1 -5
View File
@@ -100,11 +100,7 @@ public class HeightMap {
float numOfBuckets = this.heightmapImage.getWidth() - 1;
float calculatedWidth = this.fullExtentsX / numOfBuckets;
this.bucketWidthX = calculatedWidth;
numOfBuckets = this.heightmapImage.getHeight() - 1;
calculatedWidth = this.fullExtentsY / numOfBuckets;
this.bucketWidthY = calculatedWidth; // This makes no sense.
this.bucketWidthY = this.bucketWidthX; // This makes no sense.
// Generate pixel array from image data