From 2fc8dd48de68699301507f098de7d87056e177a6 Mon Sep 17 00:00:00 2001 From: Triplelexx Date: Wed, 22 Mar 2017 17:13:45 +0000 Subject: [PATCH] change testFront to testForward --- scripts/developer/tests/mat4test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/developer/tests/mat4test.js b/scripts/developer/tests/mat4test.js index 2d7c994631..4e835ec82f 100644 --- a/scripts/developer/tests/mat4test.js +++ b/scripts/developer/tests/mat4test.js @@ -141,7 +141,7 @@ function testInverse() { assert(mat4FuzzyEqual(IDENTITY, Mat4.multiply(test2, Mat4.inverse(test2)))); } -function testFront() { +function testForward() { var test0 = IDENTITY; assert(mat4FuzzyEqual({x: 0, y: 0, z: -1}, Mat4.getForward(test0))); @@ -157,7 +157,7 @@ function testMat4() { testTransformPoint(); testTransformVector(); testInverse(); - testFront(); + testForward(); print("MAT4 TEST complete! (" + (testCount - failureCount) + "/" + testCount + ") tests passed!"); }