GLM  0.9.5
type_vec4.hpp
1 
29 #ifndef glm_core_type_gentype4
30 #define glm_core_type_gentype4
31 
32 //#include "../fwd.hpp"
33 #include "setup.hpp"
34 #include "type_vec.hpp"
35 #ifdef GLM_SWIZZLE
36 # if GLM_HAS_ANONYMOUS_UNION
37 # include "_swizzle.hpp"
38 # else
39 # include "_swizzle_func.hpp"
40 # endif
41 #endif //GLM_SWIZZLE
42 #if(GLM_HAS_INITIALIZER_LISTS)
43 # include <initializer_list>
44 #endif //GLM_HAS_INITIALIZER_LISTS
45 #include <cstddef>
46 
47 namespace glm{
48 namespace detail
49 {
50  template <typename T, precision P>
51  struct tvec4
52  {
54  // Implementation detail
55 
56  enum ctor{_null};
57 
58  typedef tvec4<T, P> type;
59  typedef tvec4<bool, P> bool_type;
60  typedef T value_type;
61  typedef int size_type;
62 
64  // Helper
65 
66  GLM_FUNC_DECL GLM_CONSTEXPR length_t length() const;
67 
69  // Data
70 
71 # if(GLM_HAS_ANONYMOUS_UNION && defined(GLM_SWIZZLE))
72  union
73  {
74  struct { T r, g, b, a; };
75  struct { T s, t, p, q; };
76  struct { T x, y, z, w;};
77 
78  _GLM_SWIZZLE4_2_MEMBERS(T, P, tvec2, x, y, z, w)
79  _GLM_SWIZZLE4_2_MEMBERS(T, P, tvec2, r, g, b, a)
80  _GLM_SWIZZLE4_2_MEMBERS(T, P, tvec2, s, t, p, q)
81  _GLM_SWIZZLE4_3_MEMBERS(T, P, tvec3, x, y, z, w)
82  _GLM_SWIZZLE4_3_MEMBERS(T, P, tvec3, r, g, b, a)
83  _GLM_SWIZZLE4_3_MEMBERS(T, P, tvec3, s, t, p, q)
84  _GLM_SWIZZLE4_4_MEMBERS(T, P, tvec4, x, y, z, w)
85  _GLM_SWIZZLE4_4_MEMBERS(T, P, tvec4, r, g, b, a)
86  _GLM_SWIZZLE4_4_MEMBERS(T, P, tvec4, s, t, p, q)
87  };
88 # else
89  union { T x, r, s; };
90  union { T y, g, t; };
91  union { T z, b, p; };
92  union { T w, a, q; };
93 
94 # ifdef GLM_SWIZZLE
95  GLM_SWIZZLE_GEN_VEC_FROM_VEC4(T, P, detail::tvec4, detail::tvec2, detail::tvec3, detail::tvec4)
96 # endif
97 # endif//GLM_LANG
98 
100  // Accesses
101 
102  GLM_FUNC_DECL T & operator[](length_t i);
103  GLM_FUNC_DECL T const & operator[](length_t i) const;
104 
106  // Implicit basic constructors
107 
108  GLM_FUNC_DECL tvec4();
109  GLM_FUNC_DECL tvec4(type const & v);
110  template <precision Q>
111  GLM_FUNC_DECL tvec4(tvec4<T, Q> const & v);
112 
113 #if(GLM_HAS_INITIALIZER_LISTS)
114  template <typename U>
115  GLM_FUNC_DECL tvec4(std::initializer_list<U> l);
116 #endif//GLM_HAS_INITIALIZER_LISTS
117 
119  // Explicit basic constructors
120 
121  GLM_FUNC_DECL explicit tvec4(
122  ctor);
123  GLM_FUNC_DECL explicit tvec4(
124  T const & s);
125  GLM_FUNC_DECL explicit tvec4(
126  T const & s0,
127  T const & s1,
128  T const & s2,
129  T const & s3);
130 
132  // Conversion scalar constructors
133 
135  template <typename A, typename B, typename C, typename D>
136  GLM_FUNC_DECL explicit tvec4(
137  A const & x,
138  B const & y,
139  C const & z,
140  D const & w);
141 
143  // Conversion vector constructors
144 
146  template <typename A, typename B, typename C, precision Q>
147  GLM_FUNC_DECL explicit tvec4(tvec2<A, Q> const & v, B const & s1, C const & s2);
149  template <typename A, typename B, typename C, precision Q>
150  GLM_FUNC_DECL explicit tvec4(A const & s1, tvec2<B, Q> const & v, C const & s2);
152  template <typename A, typename B, typename C, precision Q>
153  GLM_FUNC_DECL explicit tvec4(A const & s1, B const & s2, tvec2<C, Q> const & v);
155  template <typename A, typename B, precision Q>
156  GLM_FUNC_DECL explicit tvec4(tvec3<A, Q> const & v, B const & s);
158  template <typename A, typename B, precision Q>
159  GLM_FUNC_DECL explicit tvec4(A const & s, tvec3<B, Q> const & v);
161  template <typename A, typename B, precision Q>
162  GLM_FUNC_DECL explicit tvec4(tvec2<A, Q> const & v1, tvec2<B, Q> const & v2);
164  template <typename U, precision Q>
165  GLM_FUNC_DECL explicit tvec4(tvec4<U, Q> const & v);
166 
168  // Swizzle constructors
169 
170 # if(GLM_HAS_ANONYMOUS_UNION && defined(GLM_SWIZZLE))
171  template <int E0, int E1, int E2, int E3>
172  GLM_FUNC_DECL tvec4(_swizzle<4, T, P, tvec4<T, P>, E0, E1, E2, E3> const & that)
173  {
174  *this = that();
175  }
176 
177  template <int E0, int E1, int F0, int F1>
178  GLM_FUNC_DECL tvec4(_swizzle<2, T, P, tvec2<T, P>, E0, E1, -1, -2> const & v, _swizzle<2, T, P, tvec2<T, P>, F0, F1, -1, -2> const & u)
179  {
180  *this = tvec4<T, P>(v(), u());
181  }
182 
183  template <int E0, int E1>
184  GLM_FUNC_DECL tvec4(T const & x, T const & y, _swizzle<2, T, P, tvec2<T, P>, E0, E1, -1, -2> const & v)
185  {
186  *this = tvec4<T, P>(x, y, v());
187  }
188 
189  template <int E0, int E1>
190  GLM_FUNC_DECL tvec4(T const & x, _swizzle<2, T, P, tvec2<T, P>, E0, E1, -1, -2> const & v, T const & w)
191  {
192  *this = tvec4<T, P>(x, v(), w);
193  }
194 
195  template <int E0, int E1>
196  GLM_FUNC_DECL tvec4(_swizzle<2, T, P, tvec2<T, P>, E0, E1, -1, -2> const & v, T const & z, T const & w)
197  {
198  *this = tvec4<T, P>(v(), z, w);
199  }
200 
201  template <int E0, int E1, int E2>
202  GLM_FUNC_DECL tvec4(_swizzle<3, T, P, tvec3<T, P>, E0, E1, E2, -1> const & v, T const & w)
203  {
204  *this = tvec4<T, P>(v(), w);
205  }
206 
207  template <int E0, int E1, int E2>
208  GLM_FUNC_DECL tvec4(T const & x, _swizzle<3, T, P, tvec3<T, P>, E0, E1, E2, -1> const & v)
209  {
210  *this = tvec4<T, P>(x, v());
211  }
212 # endif//(GLM_HAS_ANONYMOUS_UNION && defined(GLM_SWIZZLE))
213 
215  // Unary arithmetic operators
216 
217  GLM_FUNC_DECL tvec4<T, P> & operator= (tvec4<T, P> const & v);
218  template <typename U, precision Q>
219  GLM_FUNC_DECL tvec4<T, P> & operator= (tvec4<U, Q> const & v);
220 
221  template <typename U>
222  GLM_FUNC_DECL tvec4<T, P> & operator+=(U s);
223  template <typename U>
224  GLM_FUNC_DECL tvec4<T, P> & operator+=(tvec4<U, P> const & v);
225  template <typename U>
226  GLM_FUNC_DECL tvec4<T, P> & operator-=(U s);
227  template <typename U>
228  GLM_FUNC_DECL tvec4<T, P> & operator-=(tvec4<U, P> const & v);
229  template <typename U>
230  GLM_FUNC_DECL tvec4<T, P> & operator*=(U s);
231  template <typename U>
232  GLM_FUNC_DECL tvec4<T, P> & operator*=(tvec4<U, P> const & v);
233  template <typename U>
234  GLM_FUNC_DECL tvec4<T, P> & operator/=(U s);
235  template <typename U>
236  GLM_FUNC_DECL tvec4<T, P> & operator/=(tvec4<U, P> const & v);
237 
239  // Increment and decrement operators
240 
241  GLM_FUNC_DECL tvec4<T, P> & operator++();
242  GLM_FUNC_DECL tvec4<T, P> & operator--();
243  GLM_FUNC_DECL tvec4<T, P> operator++(int);
244  GLM_FUNC_DECL tvec4<T, P> operator--(int);
245 
247  // Unary bit operators
248 
249  template <typename U>
250  GLM_FUNC_DECL tvec4<T, P> & operator%= (U s);
251  template <typename U>
252  GLM_FUNC_DECL tvec4<T, P> & operator%= (tvec4<U, P> const & v);
253  template <typename U>
254  GLM_FUNC_DECL tvec4<T, P> & operator&= (U s);
255  template <typename U>
256  GLM_FUNC_DECL tvec4<T, P> & operator&= (tvec4<U, P> const & v);
257  template <typename U>
258  GLM_FUNC_DECL tvec4<T, P> & operator|= (U s);
259  template <typename U>
260  GLM_FUNC_DECL tvec4<T, P> & operator|= (tvec4<U, P> const & v);
261  template <typename U>
262  GLM_FUNC_DECL tvec4<T, P> & operator^= (U s);
263  template <typename U>
264  GLM_FUNC_DECL tvec4<T, P> & operator^= (tvec4<U, P> const & v);
265  template <typename U>
266  GLM_FUNC_DECL tvec4<T, P> & operator<<=(U s);
267  template <typename U>
268  GLM_FUNC_DECL tvec4<T, P> & operator<<=(tvec4<U, P> const & v);
269  template <typename U>
270  GLM_FUNC_DECL tvec4<T, P> & operator>>=(U s);
271  template <typename U>
272  GLM_FUNC_DECL tvec4<T, P> & operator>>=(tvec4<U, P> const & v);
273  };
274 
275  template <typename T, precision P>
276  GLM_FUNC_DECL tvec4<T, P> operator+(tvec4<T, P> const & v, T const & s);
277 
278  template <typename T, precision P>
279  GLM_FUNC_DECL tvec4<T, P> operator+(T const & s, tvec4<T, P> const & v);
280 
281  template <typename T, precision P>
282  GLM_FUNC_DECL tvec4<T, P> operator+(tvec4<T, P> const & v1, tvec4<T, P> const & v2);
283 
284  template <typename T, precision P>
285  GLM_FUNC_DECL tvec4<T, P> operator-(tvec4<T, P> const & v, T const & s);
286 
287  template <typename T, precision P>
288  GLM_FUNC_DECL tvec4<T, P> operator-(T const & s, tvec4<T, P> const & v);
289 
290  template <typename T, precision P>
291  GLM_FUNC_DECL tvec4<T, P> operator- (tvec4<T, P> const & v1, tvec4<T, P> const & v2);
292 
293  template <typename T, precision P>
294  GLM_FUNC_DECL tvec4<T, P> operator*(tvec4<T, P> const & v, T const & s);
295 
296  template <typename T, precision P>
297  GLM_FUNC_DECL tvec4<T, P> operator*(T const & s, tvec4<T, P> const & v);
298 
299  template <typename T, precision P>
300  GLM_FUNC_DECL tvec4<T, P> operator*(tvec4<T, P> const & v1, tvec4<T, P> const & v2);
301 
302  template <typename T, precision P>
303  GLM_FUNC_DECL tvec4<T, P> operator/(tvec4<T, P> const & v, T const & s);
304 
305  template <typename T, precision P>
306  GLM_FUNC_DECL tvec4<T, P> operator/(T const & s, tvec4<T, P> const & v);
307 
308  template <typename T, precision P>
309  GLM_FUNC_DECL tvec4<T, P> operator/(tvec4<T, P> const & v1, tvec4<T, P> const & v2);
310 
311  template <typename T, precision P>
312  GLM_FUNC_DECL tvec4<T, P> operator-(tvec4<T, P> const & v);
313 
314  template <typename T, precision P>
315  GLM_FUNC_DECL bool operator==(tvec4<T, P> const & v1, tvec4<T, P> const & v2);
316 
317  template <typename T, precision P>
318  GLM_FUNC_DECL bool operator!=(tvec4<T, P> const & v1, tvec4<T, P> const & v2);
319 
320  template <typename T, precision P>
321  GLM_FUNC_DECL tvec4<T, P> operator%(tvec4<T, P> const & v, T const & s);
322 
323  template <typename T, precision P>
324  GLM_FUNC_DECL tvec4<T, P> operator%(T const & s, tvec4<T, P> const & v);
325 
326  template <typename T, precision P>
327  GLM_FUNC_DECL tvec4<T, P> operator%(tvec4<T, P> const & v1, tvec4<T, P> const & v2);
328 
329  template <typename T, precision P>
330  GLM_FUNC_DECL tvec4<T, P> operator&(tvec4<T, P> const & v, T const & s);
331 
332  template <typename T, precision P>
333  GLM_FUNC_DECL tvec4<T, P> operator&(T const & s, tvec4<T, P> const & v);
334 
335  template <typename T, precision P>
336  GLM_FUNC_DECL tvec4<T, P> operator&(tvec4<T, P> const & v1, tvec4<T, P> const & v2);
337 
338  template <typename T, precision P>
339  GLM_FUNC_DECL tvec4<T, P> operator|(tvec4<T, P> const & v, T const & s);
340 
341  template <typename T, precision P>
342  GLM_FUNC_DECL tvec4<T, P> operator|(T const & s, tvec4<T, P> const & v);
343 
344  template <typename T, precision P>
345  GLM_FUNC_DECL tvec4<T, P> operator|(tvec4<T, P> const & v1, tvec4<T, P> const & v2);
346 
347  template <typename T, precision P>
348  GLM_FUNC_DECL tvec4<T, P> operator^(tvec4<T, P> const & v, T const & s);
349 
350  template <typename T, precision P>
351  GLM_FUNC_DECL tvec4<T, P> operator^(T const & s, tvec4<T, P> const & v);
352 
353  template <typename T, precision P>
354  GLM_FUNC_DECL tvec4<T, P> operator^(tvec4<T, P> const & v1, tvec4<T, P> const & v2);
355 
356  template <typename T, precision P>
357  GLM_FUNC_DECL tvec4<T, P> operator<<(tvec4<T, P> const & v, T const & s);
358 
359  template <typename T, precision P>
360  GLM_FUNC_DECL tvec4<T, P> operator<<(T const & s, tvec4<T, P> const & v);
361 
362  template <typename T, precision P>
363  GLM_FUNC_DECL tvec4<T, P> operator<<(tvec4<T, P> const & v1, tvec4<T, P> const & v2);
364 
365  template <typename T, precision P>
366  GLM_FUNC_DECL tvec4<T, P> operator>>(tvec4<T, P> const & v, T const & s);
367 
368  template <typename T, precision P>
369  GLM_FUNC_DECL tvec4<T, P> operator>>(T const & s, tvec4<T, P> const & v);
370 
371  template <typename T, precision P>
372  GLM_FUNC_DECL tvec4<T, P> operator>>(tvec4<T, P> const & v1, tvec4<T, P> const & v2);
373 
374  template <typename T, precision P>
375  GLM_FUNC_DECL tvec4<T, P> operator~(tvec4<T, P> const & v);
376 
377 }//namespace detail
378 }//namespace glm
379 
380 #ifndef GLM_EXTERNAL_TEMPLATE
381 #include "type_vec4.inl"
382 #endif//GLM_EXTERNAL_TEMPLATE
383 
384 #endif//glm_core_type_gentype4
GLM_FUNC_DECL genType::value_type length(genType const &x)
Returns the length of x, i.e., sqrt(x * x).