Lines Matching refs:invdet
77 const MatrixType& matrix, const typename ResultType::Scalar& invdet,
80 result.coeffRef(0,0) = matrix.coeff(1,1) * invdet;
81 result.coeffRef(1,0) = -matrix.coeff(1,0) * invdet;
82 result.coeffRef(0,1) = -matrix.coeff(0,1) * invdet;
83 result.coeffRef(1,1) = matrix.coeff(0,0) * invdet;
93 const Scalar invdet = typename MatrixType::Scalar(1) / matrix.determinant();
94 compute_inverse_size2_helper(matrix, invdet, result);
115 const Scalar invdet = Scalar(1) / determinant;
116 compute_inverse_size2_helper(matrix, invdet, inverse);
142 const typename ResultType::Scalar& invdet,
146 result.row(0) = cofactors_col0 * invdet;
147 result.coeffRef(1,0) = cofactor_3x3<MatrixType,0,1>(matrix) * invdet;
148 result.coeffRef(1,1) = cofactor_3x3<MatrixType,1,1>(matrix) * invdet;
149 result.coeffRef(1,2) = cofactor_3x3<MatrixType,2,1>(matrix) * invdet;
150 result.coeffRef(2,0) = cofactor_3x3<MatrixType,0,2>(matrix) * invdet;
151 result.coeffRef(2,1) = cofactor_3x3<MatrixType,1,2>(matrix) * invdet;
152 result.coeffRef(2,2) = cofactor_3x3<MatrixType,2,2>(matrix) * invdet;
167 const Scalar invdet = Scalar(1) / det;
168 compute_inverse_size3_helper(matrix, invdet, cofactors_col0, result);
193 const Scalar invdet = Scalar(1) / determinant;
194 compute_inverse_size3_helper(matrix, invdet, cofactors_col0, inverse);