Return inversed matrix/quaternion/plane. Can be used with arithmetic data types only.
template<class TYPE>
TMat2<TYPE> Inversed(const TMat2<TYPE> &m);
template<class TYPE>
TMat3<TYPE> Inversed(const TMat3<TYPE> &m);
template<class TYPE>
TMat4<TYPE> Inversed(const TMat4<TYPE> &m);
template<class TYPE, size_t SIZE>
TMatrix<TYPE, SIZE, SIZE> Inversed(const TMatrix<TYPE, SIZE, SIZE> &m);
template<class TYPE>
TQuaternion<TYPE> Inversed(const TQuaternion<TYPE> &q);
template<class TYPE>
TPlane<TYPE> Inversed(const TPlane<TYPE> &p);
Namespace: | ntl |
Include: |
NTL/Core/Mat2.h (For TMat2 argument) NTL/Core/Mat3.h (For TMat3 argument) NTL/Core/Mat4.h (For TMat4 argument) NTL/Core/Matrix.h (For TMatrix argument) NTL/Core/Quaternion.h (For TQuaternion argument) NTL/Core/Plane.h (For TPlane argument) |