0.9.7
mixed_product.hpp
Go to the documentation of this file.
1 
42 #pragma once
43 
44 // Dependency:
45 #include "../glm.hpp"
46 
47 #if(defined(GLM_MESSAGES) && !defined(GLM_EXT_INCLUDED))
48 # pragma message("GLM: GLM_GTX_mixed_product extension included")
49 #endif
50 
51 namespace glm
52 {
55 
57  template <typename T, precision P>
58  GLM_FUNC_DECL T mixedProduct(
59  tvec3<T, P> const & v1,
60  tvec3<T, P> const & v2,
61  tvec3<T, P> const & v3);
62 
64 }// namespace glm
65 
66 #include "mixed_product.inl"
GLM_FUNC_DECL T mixedProduct(tvec3< T, P > const &v1, tvec3< T, P > const &v2, tvec3< T, P > const &v3)
Mixed product of 3 vectors (from GLM_GTX_mixed_product extension)
Definition: _noise.hpp:40