ext.hpp
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 
40 
41 
42 
43 
44 
45 
46 
47 
48 
49 
50 
51 
52 
53 
54 
55 
56 
57 
58 #ifndef glm_ext
59 #define glm_ext
60 
61 #if(defined(GLM_MESSAGES) && !defined(GLM_MESSAGE_EXT_INCLUDED_DISPLAYED))
62 # define GLM_MESSAGE_EXT_INCLUDED_DISPLAYED
63 # pragma message("GLM: All extensions included (not recommanded)")
64 #endif//GLM_MESSAGES
65 
66 #include "./gtc/constants.hpp"
67 #include "./gtc/epsilon.hpp"
68 #include "./gtc/half_float.hpp"
69 #include "./gtc/matrix_access.hpp"
70 #include "./gtc/matrix_integer.hpp"
71 #include "./gtc/matrix_inverse.hpp"
73 #include "./gtc/noise.hpp"
74 #include "./gtc/quaternion.hpp"
75 #include "./gtc/random.hpp"
76 #include "./gtc/reciprocal.hpp"
77 #include "./gtc/swizzle.hpp"
78 #include "./gtc/type_precision.hpp"
79 #include "./gtc/type_ptr.hpp"
80 #include "./gtc/ulp.hpp"
81 
83 #include "./gtx/bit.hpp"
84 #include "./gtx/closest_point.hpp"
85 #include "./gtx/color_cast.hpp"
86 #include "./gtx/color_space.hpp"
88 #include "./gtx/compatibility.hpp"
89 #include "./gtx/component_wise.hpp"
90 #include "./gtx/euler_angles.hpp"
91 #include "./gtx/extend.hpp"
96 #include "./gtx/gradient_paint.hpp"
98 #include "./gtx/inertia.hpp"
99 #include "./gtx/int_10_10_10_2.hpp"
100 #include "./gtx/integer.hpp"
101 #include "./gtx/intersect.hpp"
102 #include "./gtx/log_base.hpp"
107 #include "./gtx/matrix_query.hpp"
108 #include "./gtx/mixed_product.hpp"
109 #include "./gtx/multiple.hpp"
110 #include "./gtx/norm.hpp"
111 #include "./gtx/normal.hpp"
112 #include "./gtx/normalize_dot.hpp"
114 #include "./gtx/ocl_type.hpp"
115 #include "./gtx/optimum_pow.hpp"
116 #include "./gtx/orthonormalize.hpp"
117 #include "./gtx/perpendicular.hpp"
119 #include "./gtx/projection.hpp"
120 #include "./gtx/quaternion.hpp"
121 #include "./gtx/raw_data.hpp"
122 #include "./gtx/rotate_vector.hpp"
123 #include "./gtx/spline.hpp"
124 #include "./gtx/std_based_type.hpp"
125 #include "./gtx/string_cast.hpp"
126 #include "./gtx/transform.hpp"
127 #include "./gtx/transform2.hpp"
128 #include "./gtx/vec1.hpp"
129 #include "./gtx/vector_access.hpp"
130 #include "./gtx/vector_angle.hpp"
131 #include "./gtx/vector_query.hpp"
133 #include "./gtx/wrap.hpp"
134 
135 #if(GLM_ARCH & GLM_ARCH_SSE2)
136 # include "./gtx/simd_vec4.hpp"
137 # include "./gtx/simd_mat4.hpp"
138 #endif
139 
140 #include "./virtrev/xstream.hpp"
141 
142 //const float goldenRatio = 1.618033988749894848f;
143 //const float pi = 3.141592653589793238f;
144 
145 #endif //glm_ext