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 namespace glm
00020 {
00021 namespace test{
00022 void main_gtx_matrix_cross_product();
00023 }
00024
00025 namespace gtx{
00027 namespace matrix_cross_product
00028 {
00031 template <typename T>
00032 detail::tmat3x3<T> matrixCross3(
00033 detail::tvec3<T> const & x);
00034
00037 template <typename T>
00038 detail::tmat4x4<T> matrixCross4(
00039 detail::tvec3<T> const & x);
00040
00041 }
00042 }
00043 }
00044
00045 #define GLM_GTX_matrix_cross_product namespace gtx::matrix_cross_product
00046 #ifndef GLM_GTX_GLOBAL
00047 namespace glm {using GLM_GTX_matrix_cross_product;}
00048 #endif//GLM_GTX_GLOBAL
00049
00050 #include "matrix_cross_product.inl"
00051
00052 #endif//glm_gtx_matrix_cross_product