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