0.9.8
mixed_product.hpp
Go to the documentation of this file.
1 
13 #pragma once
14 
15 // Dependency:
16 #include "../glm.hpp"
17 
18 #if GLM_MESSAGES == GLM_MESSAGES_ENABLED && !defined(GLM_EXT_INCLUDED)
19 # pragma message("GLM: GLM_GTX_mixed_product extension included")
20 #endif
21 
22 namespace glm
23 {
26 
28  template <typename T, precision P>
29  GLM_FUNC_DECL T mixedProduct(
30  tvec3<T, P> const & v1,
31  tvec3<T, P> const & v2,
32  tvec3<T, P> const & v3);
33 
35 }// namespace glm
36 
37 #include "mixed_product.inl"
Definition: _noise.hpp:11
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)