Lines Matching refs:kInv
4058 var kInv = []; variable in PMatrix3D
4059 kInv[0] = +this.elements[5] * fB5 - this.elements[6] * fB4 + this.elements[7] * fB3;
4060 kInv[4] = -this.elements[4] * fB5 + this.elements[6] * fB2 - this.elements[7] * fB1;
4061 kInv[8] = +this.elements[4] * fB4 - this.elements[5] * fB2 + this.elements[7] * fB0;
4062 kInv[12] = -this.elements[4] * fB3 + this.elements[5] * fB1 - this.elements[6] * fB0;
4063 kInv[1] = -this.elements[1] * fB5 + this.elements[2] * fB4 - this.elements[3] * fB3;
4064 kInv[5] = +this.elements[0] * fB5 - this.elements[2] * fB2 + this.elements[3] * fB1;
4065 kInv[9] = -this.elements[0] * fB4 + this.elements[1] * fB2 - this.elements[3] * fB0;
4066 kInv[13] = +this.elements[0] * fB3 - this.elements[1] * fB1 + this.elements[2] * fB0;
4067 kInv[2] = +this.elements[13] * fA5 - this.elements[14] * fA4 + this.elements[15] * fA3;
4068 kInv[6] = -this.elements[12] * fA5 + this.elements[14] * fA2 - this.elements[15] * fA1;
4069 kInv[10] = +this.elements[12] * fA4 - this.elements[13] * fA2 + this.elements[15] * fA0;
4070 kInv[14] = -this.elements[12] * fA3 + this.elements[13] * fA1 - this.elements[14] * fA0;
4071 kInv[3] = -this.elements[9] * fA5 + this.elements[10] * fA4 - this.elements[11] * fA3;
4072 kInv[7] = +this.elements[8] * fA5 - this.elements[10] * fA2 + this.elements[11] * fA1;
4073 kInv[11] = -this.elements[8] * fA4 + this.elements[9] * fA2 - this.elements[11] * fA0;
4074 kInv[15] = +this.elements[8] * fA3 - this.elements[9] * fA1 + this.elements[10] * fA0;
4078 kInv[0] *= fInvDet;
4079 kInv[1] *= fInvDet;
4080 kInv[2] *= fInvDet;
4081 kInv[3] *= fInvDet;
4082 kInv[4] *= fInvDet;
4083 kInv[5] *= fInvDet;
4084 kInv[6] *= fInvDet;
4085 kInv[7] *= fInvDet;
4086 kInv[8] *= fInvDet;
4087 kInv[9] *= fInvDet;
4088 kInv[10] *= fInvDet;
4089 kInv[11] *= fInvDet;
4090 kInv[12] *= fInvDet;
4091 kInv[13] *= fInvDet;
4092 kInv[14] *= fInvDet;
4093 kInv[15] *= fInvDet;
4095 this.elements = kInv.slice();