mixed_product.hpp
00001 
00002 // OpenGL Mathematics Copyright (c) 2005 - 2011 G-Truc Creation (www.g-truc.net)
00004 // Created : 2007-04-03
00005 // Updated : 2008-09-17
00006 // Licence : This source is under MIT License
00007 // File    : glm/gtx/mixed_product.hpp
00009 // Dependency:
00010 // - GLM core
00012 
00013 #ifndef glm_gtx_mixed_product
00014 #define glm_gtx_mixed_product
00015 
00016 // Dependency:
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 namespace gtx{
00025 namespace mixed_product 
00026 {
00029 
00031         template <typename valType> 
00032         valType mixedProduct(
00033                 detail::tvec3<valType> const & v1, 
00034                 detail::tvec3<valType> const & v2, 
00035                 detail::tvec3<valType> const & v3);
00036 
00038 }// namespace mixed_product
00039 }// namespace gtx
00040 }// namespace glm
00041 
00042 #include "mixed_product.inl"
00043 
00044 namespace glm{using namespace gtx::mixed_product;}
00045 
00046 #endif//glm_gtx_mixed_product