One more fix for incorrect indices.

Change-Id: I283f2f09cd0a17eefed4a763b08df856bbae76b3
This commit is contained in:
Stephen Hines
2013-01-22 18:29:41 -08:00
parent b5a7204313
commit 3983754bbb

View File

@@ -140,7 +140,7 @@ public class Matrix3f {
mMat[4] = y*y*nc + c;
mMat[7] = yz*nc - xs;
mMat[2] = zx*nc - ys;
mMat[6] = yz*nc + xs;
mMat[5] = yz*nc + xs;
mMat[8] = z*z*nc + c;
}