am e93ca308: am 0e95685f: am b5a72043: Merge "Fix array index oob in Matrix3f.loadRotate()."

* commit 'e93ca308c8792b231ec921ba8a00e6c78e87f9ad':
  Fix array index oob in Matrix3f.loadRotate().
This commit is contained in:
Christopher Tate
2013-01-22 18:45:50 -08:00
committed by Android Git Automerger

View File

@@ -138,7 +138,7 @@ public class Matrix3f {
mMat[6] = zx*nc + ys;
mMat[1] = xy*nc + zs;
mMat[4] = y*y*nc + c;
mMat[9] = yz*nc - xs;
mMat[7] = yz*nc - xs;
mMat[2] = zx*nc - ys;
mMat[6] = yz*nc + xs;
mMat[8] = z*z*nc + c;