0.9.6
matrix_cross_product.hpp
Go to the documentation of this file.
1 
43 #pragma once
44 
45 // Dependency:
46 #include "../glm.hpp"
47 
48 #if(defined(GLM_MESSAGES) && !defined(GLM_EXT_INCLUDED))
49 # pragma message("GLM: GLM_GTX_matrix_cross_product extension included")
50 #endif
51 
52 namespace glm
53 {
56 
59  template <typename T, precision P>
60  GLM_FUNC_DECL tmat3x3<T, P> matrixCross3(
61  tvec3<T, P> const & x);
62 
65  template <typename T, precision P>
66  GLM_FUNC_DECL tmat4x4<T, P> matrixCross4(
67  tvec3<T, P> const & x);
68 
70 }//namespace glm
71 
72 #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:39