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 U>
136  GLM_FUNC_DECL explicit tvec4(
137  U const & x);
139  template <typename A, typename B, typename C, typename D>
140  GLM_FUNC_DECL explicit tvec4(
141  A const & x,
142  B const & y,
143  C const & z,
144  D const & w);
145 
147  // Conversion vector constructors
148 
150  template <typename A, typename B, typename C, precision Q>
151  GLM_FUNC_DECL explicit tvec4(tvec2<A, Q> const & v, B const & s1, C const & s2);
153  template <typename A, typename B, typename C, precision Q>
154  GLM_FUNC_DECL explicit tvec4(A const & s1, tvec2<B, Q> const & v, C const & s2);
156  template <typename A, typename B, typename C, precision Q>
157  GLM_FUNC_DECL explicit tvec4(A const & s1, B const & s2, tvec2<C, Q> const & v);
159  template <typename A, typename B, precision Q>
160  GLM_FUNC_DECL explicit tvec4(tvec3<A, Q> const & v, B const & s);
162  template <typename A, typename B, precision Q>
163  GLM_FUNC_DECL explicit tvec4(A const & s, tvec3<B, Q> const & v);
165  template <typename A, typename B, precision Q>
166  GLM_FUNC_DECL explicit tvec4(tvec2<A, Q> const & v1, tvec2<B, Q> const & v2);
168  template <typename U, precision Q>
169  GLM_FUNC_DECL explicit tvec4(tvec4<U, Q> const & v);
170 
172  // Swizzle constructors
173 
174 # if(GLM_HAS_ANONYMOUS_UNION && defined(GLM_SWIZZLE))
175  template <int E0, int E1, int E2, int E3>
176  GLM_FUNC_DECL tvec4(_swizzle<4, T, P, tvec4<T, P>, E0, E1, E2, E3> const & that)
177  {
178  *this = that();
179  }
180 
181  template <int E0, int E1, int F0, int F1>
182  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)
183  {
184  *this = tvec4<T, P>(v(), u());
185  }
186 
187  template <int E0, int E1>
188  GLM_FUNC_DECL tvec4(T const & x, T const & y, _swizzle<2, T, P, tvec2<T, P>, E0, E1, -1, -2> const & v)
189  {
190  *this = tvec4<T, P>(x, y, v());
191  }
192 
193  template <int E0, int E1>
194  GLM_FUNC_DECL tvec4(T const & x, _swizzle<2, T, P, tvec2<T, P>, E0, E1, -1, -2> const & v, T const & w)
195  {
196  *this = tvec4<T, P>(x, v(), w);
197  }
198 
199  template <int E0, int E1>
200  GLM_FUNC_DECL tvec4(_swizzle<2, T, P, tvec2<T, P>, E0, E1, -1, -2> const & v, T const & z, T const & w)
201  {
202  *this = tvec4<T, P>(v(), z, w);
203  }
204 
205  template <int E0, int E1, int E2>
206  GLM_FUNC_DECL tvec4(_swizzle<3, T, P, tvec3<T, P>, E0, E1, E2, -1> const & v, T const & w)
207  {
208  *this = tvec4<T, P>(v(), w);
209  }
210 
211  template <int E0, int E1, int E2>
212  GLM_FUNC_DECL tvec4(T const & x, _swizzle<3, T, P, tvec3<T, P>, E0, E1, E2, -1> const & v)
213  {
214  *this = tvec4<T, P>(x, v());
215  }
216 # endif//(GLM_HAS_ANONYMOUS_UNION && defined(GLM_SWIZZLE))
217 
219  // Unary arithmetic operators
220 
221  GLM_FUNC_DECL tvec4<T, P> & operator= (tvec4<T, P> const & v);
222  template <typename U, precision Q>
223  GLM_FUNC_DECL tvec4<T, P> & operator= (tvec4<U, Q> const & v);
224 
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  template <typename U>
238  GLM_FUNC_DECL tvec4<T, P> & operator/=(U s);
239  template <typename U>
240  GLM_FUNC_DECL tvec4<T, P> & operator/=(tvec4<U, P> const & v);
241 
243  // Increment and decrement operators
244 
245  GLM_FUNC_DECL tvec4<T, P> & operator++();
246  GLM_FUNC_DECL tvec4<T, P> & operator--();
247  GLM_FUNC_DECL tvec4<T, P> operator++(int);
248  GLM_FUNC_DECL tvec4<T, P> operator--(int);
249 
251  // Unary bit operators
252 
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  template <typename U>
274  GLM_FUNC_DECL tvec4<T, P> & operator>>=(U s);
275  template <typename U>
276  GLM_FUNC_DECL tvec4<T, P> & operator>>=(tvec4<U, P> const & v);
277  };
278 
279  GLM_DETAIL_IS_VECTOR(tvec4);
280 
281  template <typename T, precision P>
282  GLM_FUNC_DECL tvec4<T, P> operator+(tvec4<T, P> const & v, T const & s);
283 
284  template <typename T, precision P>
285  GLM_FUNC_DECL tvec4<T, P> operator+(T const & s, tvec4<T, P> const & v);
286 
287  template <typename T, precision P>
288  GLM_FUNC_DECL tvec4<T, P> operator+(tvec4<T, P> const & v1, tvec4<T, P> const & v2);
289 
290  template <typename T, precision P>
291  GLM_FUNC_DECL tvec4<T, P> operator-(tvec4<T, P> const & v, T const & s);
292 
293  template <typename T, precision P>
294  GLM_FUNC_DECL tvec4<T, P> operator-(T const & s, tvec4<T, P> const & v);
295 
296  template <typename T, precision P>
297  GLM_FUNC_DECL tvec4<T, P> operator- (tvec4<T, P> const & v1, tvec4<T, P> const & v2);
298 
299  template <typename T, precision P>
300  GLM_FUNC_DECL tvec4<T, P> operator*(tvec4<T, P> const & v, T const & s);
301 
302  template <typename T, precision P>
303  GLM_FUNC_DECL tvec4<T, P> operator*(T const & s, tvec4<T, P> const & v);
304 
305  template <typename T, precision P>
306  GLM_FUNC_DECL tvec4<T, P> operator*(tvec4<T, P> const & v1, tvec4<T, P> const & v2);
307 
308  template <typename T, precision P>
309  GLM_FUNC_DECL tvec4<T, P> operator/(tvec4<T, P> const & v, T const & s);
310 
311  template <typename T, precision P>
312  GLM_FUNC_DECL tvec4<T, P> operator/(T const & s, tvec4<T, P> const & v);
313 
314  template <typename T, precision P>
315  GLM_FUNC_DECL tvec4<T, P> operator/(tvec4<T, P> const & v1, tvec4<T, P> const & v2);
316 
317  template <typename T, precision P>
318  GLM_FUNC_DECL tvec4<T, P> operator-(tvec4<T, P> const & v);
319 
320  template <typename T, precision P>
321  GLM_FUNC_DECL bool operator==(tvec4<T, P> const & v1, tvec4<T, P> const & v2);
322 
323  template <typename T, precision P>
324  GLM_FUNC_DECL bool operator!=(tvec4<T, P> const & v1, tvec4<T, P> const & v2);
325 
326  template <typename T, precision P>
327  GLM_FUNC_DECL tvec4<T, P> operator%(tvec4<T, P> const & v, T const & s);
328 
329  template <typename T, precision P>
330  GLM_FUNC_DECL tvec4<T, P> operator%(T const & s, tvec4<T, P> const & v);
331 
332  template <typename T, precision P>
333  GLM_FUNC_DECL tvec4<T, P> operator%(tvec4<T, P> const & v1, tvec4<T, P> const & v2);
334 
335  template <typename T, precision P>
336  GLM_FUNC_DECL tvec4<T, P> operator&(tvec4<T, P> const & v, T const & s);
337 
338  template <typename T, precision P>
339  GLM_FUNC_DECL tvec4<T, P> operator&(T const & s, tvec4<T, P> const & v);
340 
341  template <typename T, precision P>
342  GLM_FUNC_DECL tvec4<T, P> operator&(tvec4<T, P> const & v1, tvec4<T, P> const & v2);
343 
344  template <typename T, precision P>
345  GLM_FUNC_DECL tvec4<T, P> operator|(tvec4<T, P> const & v, T const & s);
346 
347  template <typename T, precision P>
348  GLM_FUNC_DECL tvec4<T, P> operator|(T const & s, tvec4<T, P> const & v);
349 
350  template <typename T, precision P>
351  GLM_FUNC_DECL tvec4<T, P> operator|(tvec4<T, P> const & v1, tvec4<T, P> const & v2);
352 
353  template <typename T, precision P>
354  GLM_FUNC_DECL tvec4<T, P> operator^(tvec4<T, P> const & v, T const & s);
355 
356  template <typename T, precision P>
357  GLM_FUNC_DECL tvec4<T, P> operator^(T const & s, tvec4<T, P> const & v);
358 
359  template <typename T, precision P>
360  GLM_FUNC_DECL tvec4<T, P> operator^(tvec4<T, P> const & v1, tvec4<T, P> const & v2);
361 
362  template <typename T, precision P>
363  GLM_FUNC_DECL tvec4<T, P> operator<<(tvec4<T, P> const & v, T const & s);
364 
365  template <typename T, precision P>
366  GLM_FUNC_DECL tvec4<T, P> operator<<(T const & s, tvec4<T, P> const & v);
367 
368  template <typename T, precision P>
369  GLM_FUNC_DECL tvec4<T, P> operator<<(tvec4<T, P> const & v1, tvec4<T, P> const & v2);
370 
371  template <typename T, precision P>
372  GLM_FUNC_DECL tvec4<T, P> operator>>(tvec4<T, P> const & v, T const & s);
373 
374  template <typename T, precision P>
375  GLM_FUNC_DECL tvec4<T, P> operator>>(T const & s, tvec4<T, P> const & v);
376 
377  template <typename T, precision P>
378  GLM_FUNC_DECL tvec4<T, P> operator>>(tvec4<T, P> const & v1, tvec4<T, P> const & v2);
379 
380  template <typename T, precision P>
381  GLM_FUNC_DECL tvec4<T, P> operator~(tvec4<T, P> const & v);
382 
383 }//namespace detail
384 }//namespace glm
385 
386 #ifndef GLM_EXTERNAL_TEMPLATE
387 #include "type_vec4.inl"
388 #endif//GLM_EXTERNAL_TEMPLATE
389 
390 #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).