template<typename _Scalar, int _AmbientDim>
template<typename XprType>
Applies the transformation matrix mat to
Definition at line 210 of file Hyperplane.h. References MatrixBase< Derived >::inverse(), and Hyperplane< _Scalar, _AmbientDim >::normal(). Referenced by Hyperplane< _Scalar, _AmbientDim >::transform(). { if (traits==Affine) normal() = mat.inverse().transpose() * normal(); else if (traits==Isometry) normal() = mat * normal(); else { ei_assert("invalid traits value in Hyperplane::transform()"); } return *this; }
|