not really much point to the use of 'final' here...

This commit is contained in:
Gered 2013-09-14 17:36:03 -04:00
parent 79bae46cb1
commit 31efacf9a2

View file

@ -321,7 +321,7 @@ public class IntersectionTester {
static final Vector3 edge = new Vector3(); static final Vector3 edge = new Vector3();
static final Vector3 baseToVertex = new Vector3(); static final Vector3 baseToVertex = new Vector3();
public static boolean sweptSphereTest(SweptSphereCollisionPacket packet, final Vector3 v1, final Vector3 v2, final Vector3 v3) { public static boolean sweptSphereTest(SweptSphereCollisionPacket packet, Vector3 v1, Vector3 v2, Vector3 v3) {
boolean foundCollision = false; boolean foundCollision = false;
tmp1.set(1.0f / packet.ellipsoidRadius.x, 1.0f / packet.ellipsoidRadius.y, 1.0f / packet.ellipsoidRadius.z); tmp1.set(1.0f / packet.ellipsoidRadius.x, 1.0f / packet.ellipsoidRadius.y, 1.0f / packet.ellipsoidRadius.z);