Lines Matching refs:coeffRef
69 inline Scalar& x() { return this->derived().coeffs().coeffRef(0); } in x()
71 inline Scalar& y() { return this->derived().coeffs().coeffRef(1); } in y()
73 inline Scalar& z() { return this->derived().coeffs().coeffRef(2); } in z()
75 inline Scalar& w() { return this->derived().coeffs().coeffRef(3); } in w()
556 res.coeffRef(0,0) = Scalar(1)-(tyy+tzz);
557 res.coeffRef(0,1) = txy-twz;
558 res.coeffRef(0,2) = txz+twy;
559 res.coeffRef(1,0) = txy+twz;
560 res.coeffRef(1,1) = Scalar(1)-(txx+tzz);
561 res.coeffRef(1,2) = tyz-twx;
562 res.coeffRef(2,0) = txz-twy;
563 res.coeffRef(2,1) = tyz+twx;
564 res.coeffRef(2,2) = Scalar(1)-(txx+tyy);
754 q.coeffs().coeffRef(i) = Scalar(0.5) * t;
757 q.coeffs().coeffRef(j) = (mat.coeff(j,i)+mat.coeff(i,j))*t;
758 q.coeffs().coeffRef(k) = (mat.coeff(k,i)+mat.coeff(i,k))*t;