7 #ifndef __FWMATH_MATRIXFUNCTIONS_HPP__ 8 #define __FWMATH_MATRIXFUNCTIONS_HPP__ 10 #include <fwCore/base.hpp> 12 #include "fwMath/IntrasecTypes.hpp" 13 #include "fwMath/config.hpp" 25 FWMATH_API
void multVecMatrix(
const fwMatrix4x4 & _matrix,
const fwVec3d& _source,fwVec3d& _dest);
42 FWMATH_API fwMatrix4x4
getInverse(
const fwMatrix4x4 & matrix );
53 FWMATH_API fwMatrix4x4 operator*(
const fwMatrix4x4 & matrix1,
const fwMatrix4x4 & matrix2 );
FWMATH_API fwMatrix4x4 getInverse(const fwMatrix4x4 &matrix)
Computes the inverse of a matrix.
The namespace fwMath contains classes which provide the implementation of several mathematic function...
FWMATH_API fwMatrix4x4 getRotationMatrix(const fwVec3d &_vecNorm)
Compute a matrix rotation.
FWMATH_API void multVecMatrix(const fwMatrix4x4 &_matrix, const fwVec3d &_source, fwVec3d &_dest)
Multiply a matrix by a vector.