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