00001
00002
00004
00005
00006
00007
00009
00010
00012
00013 #ifndef glm_gtx_matrix_cross_product
00014 #define glm_gtx_matrix_cross_product
00015
00016
00017 #include "../glm.hpp"
00018
00019 #if(defined(GLM_MESSAGES) && !defined(glm_ext))
00020 # pragma message("GLM: GLM_GTX_matrix_cross_product extension included")
00021 #endif
00022
00023 namespace glm{
00024 namespace gtx{
00025 namespace matrix_cross_product
00026 {
00029
00032 template <typename T>
00033 detail::tmat3x3<T> matrixCross3(
00034 detail::tvec3<T> const & x);
00035
00038 template <typename T>
00039 detail::tmat4x4<T> matrixCross4(
00040 detail::tvec3<T> const & x);
00041
00043 }
00044 }
00045 }
00046
00047 #include "matrix_cross_product.inl"
00048
00049 namespace glm{using namespace gtx::matrix_cross_product;}
00050
00051 #endif//glm_gtx_matrix_cross_product