00001
00002
00004
00005
00006
00007
00009
00010
00012
00013 #ifndef glm_gtx_mixed_product
00014 #define glm_gtx_mixed_product
00015
00016
00017 #include "../glm.hpp"
00018
00019 #if(defined(GLM_MESSAGES) && !defined(glm_ext))
00020 # pragma message("GLM: GLM_GTX_mixed_product extension included")
00021 #endif
00022
00023 namespace glm
00024 {
00025 namespace test{
00026 void main_gtx_matrix_selection();
00027 }
00028
00029 namespace gtx{
00031 namespace mixed_product
00032 {
00035
00037 template <typename valType>
00038 valType mixedProduct(
00039 detail::tvec3<valType> const & v1,
00040 detail::tvec3<valType> const & v2,
00041 detail::tvec3<valType> const & v3);
00042
00044 }
00045 }
00046 }
00047
00048 #include "mixed_product.inl"
00049
00050 namespace glm{using namespace gtx::mixed_product;}
00051
00052 #endif//glm_gtx_mixed_product