Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038 #pragma once
00039
00040
00041 #include "../glm.hpp"
00042
00043 #if(defined(GLM_MESSAGES) && !defined(GLM_EXT_INCLUDED))
00044 # pragma message("GLM: GLM_GTX_matrix_interpolation extension included")
00045 #endif
00046
00047 namespace glm
00048 {
00051
00054 template <typename T, precision P>
00055 GLM_FUNC_DECL void axisAngle(
00056 detail::tmat4x4<T, P> const & mat,
00057 detail::tvec3<T, P> & axis,
00058 T & angle);
00059
00062 template <typename T, precision P>
00063 GLM_FUNC_DECL detail::tmat4x4<T, P> axisAngleMatrix(
00064 detail::tvec3<T, P> const & axis,
00065 T const angle);
00066
00069 template <typename T, precision P>
00070 GLM_FUNC_DECL detail::tmat4x4<T, P> extractMatrixRotation(
00071 detail::tmat4x4<T, P> const & mat);
00072
00076 template <typename T, precision P>
00077 GLM_FUNC_DECL detail::tmat4x4<T, P> interpolate(
00078 detail::tmat4x4<T, P> const & m1,
00079 detail::tmat4x4<T, P> const & m2,
00080 T const delta);
00081
00083 }
00084
00085 #include "matrix_interpolation.inl"