I'm doing a bit of modding to a popular game(Minecraft) and I seen these lines in the terrain generation
double d4 = 1.0D;
d4 *= d4;
d4 *= d4;
d4 = 1.0D - d4;
double d5 = (noise1[l1] + 256D) / 512D;
d5 *= d4;
I was wondering what the point of d4 was, because on the fourth line it would always be 0, wouldn't it?
1.0d * 1.0dis exactly 1.0d, as 1.0d is exactly representable in binary floating point. (Compare that with 0.1d, which isn't exactly representable.) – Jon Skeet Sep 1 '11 at 22:25