Commant + indentation.

This commit is contained in:
asofold 2014-08-17 22:03:26 +02:00
parent 1b55d91736
commit 7c1b2eaed3

View File

@ -137,6 +137,7 @@ public abstract class RayTracing {
oX = Math.min(1.0, Math.max(0.0, oX + tMin * dX));
oY = Math.min(1.0, Math.max(0.0, oY + tMin * dY));
oZ = Math.min(1.0, Math.max(0.0, oZ + tMin * dZ));
// TODO: Consider Heuristic change of the checking order for dy > 0 vs. dy < 0.
// x
if (tX == tMin){
if (dX < 0){