am c3ee1d9a: am 7ad885e2: Merge "One more fix for incorrect indices."

# By Stephen Hines
# Via Android Git Automerger (1) and others
* commit 'c3ee1d9aea36bb7c33dee6211905d4c1ab2681a1':
  One more fix for incorrect indices.
This commit is contained in:
Kenny Root
2013-01-29 22:59:33 -08:00
committed by Android Git Automerger

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;
}