Searched refs:det (Results 1 – 1 of 1) sorted by relevance
705 double det = a00 * t00 + a01 * t10 + a02 * t20; in invert() local706 if (Math.abs(det) < 1e-9) { in invert()710 output[0] = (float) (t00 / det); in invert()711 output[1] = (float) (t01 / det); in invert()712 output[2] = (float) (t02 / det); in invert()713 output[3] = (float) (t10 / det); in invert()714 output[4] = (float) (t11 / det); in invert()715 output[5] = (float) (t12 / det); in invert()716 output[6] = (float) (t20 / det); in invert()717 output[7] = (float) (t21 / det); in invert()[all …]