matrix_cross_product.hpp
Go to the documentation of this file.
1 
2 
3 
4 
5 
6 
7 
8 
9 
10 
11 
12 
13 
14 
15 
16 
17 
18 
19 
20 
21 
22 
23 
24 
25 
26 
27 
28 
29 
30 
31 
32 
33 
34 
35 
36 
37 
38 
39 #ifndef GLM_GTX_matrix_cross_product
40 #define GLM_GTX_matrix_cross_product GLM_VERSION
41 
42 // Dependency:
43 #include "../glm.hpp"
44 
45 #if(defined(GLM_MESSAGES) && !defined(glm_ext))
46 # pragma message("GLM: GLM_GTX_matrix_cross_product extension included")
47 #endif
48 
49 namespace glm
50 {
53 
56  template <typename T>
57  detail::tmat3x3<T> matrixCross3(
58  detail::tvec3<T> const & x);
59 
62  template <typename T>
63  detail::tmat4x4<T> matrixCross4(
64  detail::tvec3<T> const & x);
65 
67 }//namespace glm
68 
69 #include "matrix_cross_product.inl"
70 
71 #endif//GLM_GTX_matrix_cross_product