0.9.8
matrix_cross_product.hpp
Go to the documentation of this file.
1 
14 #pragma once
15 
16 // Dependency:
17 #include "../glm.hpp"
18 
19 #if GLM_MESSAGES == GLM_MESSAGES_ENABLED && !defined(GLM_EXT_INCLUDED)
20 # pragma message("GLM: GLM_GTX_matrix_cross_product extension included")
21 #endif
22 
23 namespace glm
24 {
27 
30  template <typename T, precision P>
31  GLM_FUNC_DECL tmat3x3<T, P> matrixCross3(
32  tvec3<T, P> const & x);
33 
36  template <typename T, precision P>
37  GLM_FUNC_DECL tmat4x4<T, P> matrixCross4(
38  tvec3<T, P> const & x);
39 
41 }//namespace glm
42 
43 #include "matrix_cross_product.inl"
GLM_FUNC_DECL tmat4x4< T, P > matrixCross4(tvec3< T, P > const &x)
Build a cross product matrix.
GLM_FUNC_DECL tmat3x3< T, P > matrixCross3(tvec3< T, P > const &x)
Build a cross product matrix.
Definition: _noise.hpp:11