Home | History | Annotate | Download | only in math

Lines Matching refs:m11

328                 matrix.m11, matrix.m12, matrix.m20, matrix.m21, matrix.m22);

332 float m10, float m11, float m12,
340 float t = m00 + m11 + m22;
350 } else if ((m00 > m11) && (m00 > m22)) {
351 float s = FastMath.sqrt(1.0f + m00 - m11 - m22); // |s|>=1
357 } else if (m11 > m22) {
358 float s = FastMath.sqrt(1.0f + m11 - m00 - m22); // |s|>=1
365 float s = FastMath.sqrt(1.0f + m22 - m00 - m11); // |s|>=1
422 result.m11 = 1 - (xx + zz);
467 result.m11 = 1 - (xx + zz);