Searched refs:_determinant3x3 (Results 1 – 1 of 1) sorted by relevance
/external/autotest/client/deps/webgl_mpd/src/resources/ |
D | J3DIMath.js | 900 J3DIMatrix4.prototype._determinant3x3 = function(a1, a2, a3, b1, b2, b3, c1, c2, c3) method in J3DIMatrix4 929 return a1 * this._determinant3x3(b2, b3, b4, c2, c3, c4, d2, d3, d4) 930 - b1 * this._determinant3x3(a2, a3, a4, c2, c3, c4, d2, d3, d4) 931 + c1 * this._determinant3x3(a2, a3, a4, b2, b3, b4, d2, d3, d4) 932 - d1 * this._determinant3x3(a2, a3, a4, b2, b3, b4, c2, c3, c4); 958 this.$matrix.m11 = this._determinant3x3(b2, b3, b4, c2, c3, c4, d2, d3, d4); 959 this.$matrix.m21 = - this._determinant3x3(a2, a3, a4, c2, c3, c4, d2, d3, d4); 960 this.$matrix.m31 = this._determinant3x3(a2, a3, a4, b2, b3, b4, d2, d3, d4); 961 this.$matrix.m41 = - this._determinant3x3(a2, a3, a4, b2, b3, b4, c2, c3, c4); 963 this.$matrix.m12 = - this._determinant3x3(b1, b3, b4, c1, c3, c4, d1, d3, d4); [all …]
|