0.9.9 API documenation
type_mat2x3.hpp
Go to the documentation of this file.
1 
4 #pragma once
5 
6 #include "../fwd.hpp"
7 #include "type_vec2.hpp"
8 #include "type_vec3.hpp"
9 #include "type_mat.hpp"
10 #include <limits>
11 #include <cstddef>
12 
13 namespace glm
14 {
15  template<typename T, qualifier P>
16  struct mat<2, 3, T, P>
17  {
18  typedef vec<3, T, P> col_type;
19  typedef vec<2, T, P> row_type;
20  typedef mat<2, 3, T, P> type;
21  typedef mat<3, 2, T, P> transpose_type;
22  typedef T value_type;
23 
24  private:
25  col_type value[2];
26 
27  public:
28  // -- Accesses --
29 
30  typedef length_t length_type;
31  GLM_FUNC_DECL static GLM_CONSTEXPR length_type length() { return 2; }
32 
33  GLM_FUNC_DECL col_type & operator[](length_type i);
34  GLM_FUNC_DECL col_type const & operator[](length_type i) const;
35 
36  // -- Constructors --
37 
38  GLM_FUNC_DECL mat() GLM_DEFAULT;
39  GLM_FUNC_DECL mat(mat<2, 3, T, P> const & m) GLM_DEFAULT;
40  template<qualifier Q>
41  GLM_FUNC_DECL mat(mat<2, 3, T, Q> const & m);
42 
43  GLM_FUNC_DECL explicit mat(T scalar);
44  GLM_FUNC_DECL mat(
45  T x0, T y0, T z0,
46  T x1, T y1, T z1);
47  GLM_FUNC_DECL mat(
48  col_type const & v0,
49  col_type const & v1);
50 
51  // -- Conversions --
52 
53  template<typename X1, typename Y1, typename Z1, typename X2, typename Y2, typename Z2>
54  GLM_FUNC_DECL mat(
55  X1 x1, Y1 y1, Z1 z1,
56  X2 x2, Y2 y2, Z2 z2);
57 
58  template<typename U, typename V>
59  GLM_FUNC_DECL mat(
60  vec<3, U, P> const & v1,
61  vec<3, V, P> const & v2);
62 
63  // -- Matrix conversions --
64 
65  template<typename U, qualifier Q>
66  GLM_FUNC_DECL GLM_EXPLICIT mat(mat<2, 3, U, Q> const & m);
67 
68  GLM_FUNC_DECL GLM_EXPLICIT mat(mat<2, 2, T, P> const & x);
69  GLM_FUNC_DECL GLM_EXPLICIT mat(mat<3, 3, T, P> const & x);
70  GLM_FUNC_DECL GLM_EXPLICIT mat(mat<4, 4, T, P> const & x);
71  GLM_FUNC_DECL GLM_EXPLICIT mat(mat<2, 4, T, P> const & x);
72  GLM_FUNC_DECL GLM_EXPLICIT mat(mat<3, 2, T, P> const & x);
73  GLM_FUNC_DECL GLM_EXPLICIT mat(mat<3, 4, T, P> const & x);
74  GLM_FUNC_DECL GLM_EXPLICIT mat(mat<4, 2, T, P> const & x);
75  GLM_FUNC_DECL GLM_EXPLICIT mat(mat<4, 3, T, P> const & x);
76 
77  // -- Unary arithmetic operators --
78 
79  GLM_FUNC_DECL mat<2, 3, T, P> & operator=(mat<2, 3, T, P> const & m) GLM_DEFAULT;
80 
81  template<typename U>
82  GLM_FUNC_DECL mat<2, 3, T, P> & operator=(mat<2, 3, U, P> const & m);
83  template<typename U>
84  GLM_FUNC_DECL mat<2, 3, T, P> & operator+=(U s);
85  template<typename U>
86  GLM_FUNC_DECL mat<2, 3, T, P> & operator+=(mat<2, 3, U, P> const & m);
87  template<typename U>
88  GLM_FUNC_DECL mat<2, 3, T, P> & operator-=(U s);
89  template<typename U>
90  GLM_FUNC_DECL mat<2, 3, T, P> & operator-=(mat<2, 3, U, P> const & m);
91  template<typename U>
92  GLM_FUNC_DECL mat<2, 3, T, P> & operator*=(U s);
93  template<typename U>
94  GLM_FUNC_DECL mat<2, 3, T, P> & operator/=(U s);
95 
96  // -- Increment and decrement operators --
97 
98  GLM_FUNC_DECL mat<2, 3, T, P> & operator++ ();
99  GLM_FUNC_DECL mat<2, 3, T, P> & operator-- ();
100  GLM_FUNC_DECL mat<2, 3, T, P> operator++(int);
101  GLM_FUNC_DECL mat<2, 3, T, P> operator--(int);
102  };
103 
104  // -- Unary operators --
105 
106  template<typename T, qualifier P>
107  GLM_FUNC_DECL mat<2, 3, T, P> operator+(mat<2, 3, T, P> const & m);
108 
109  template<typename T, qualifier P>
110  GLM_FUNC_DECL mat<2, 3, T, P> operator-(mat<2, 3, T, P> const & m);
111 
112  // -- Binary operators --
113 
114  template<typename T, qualifier P>
115  GLM_FUNC_DECL mat<2, 3, T, P> operator+(mat<2, 3, T, P> const & m, T scalar);
116 
117  template<typename T, qualifier P>
118  GLM_FUNC_DECL mat<2, 3, T, P> operator+(mat<2, 3, T, P> const & m1, mat<2, 3, T, P> const & m2);
119 
120  template<typename T, qualifier P>
121  GLM_FUNC_DECL mat<2, 3, T, P> operator-(mat<2, 3, T, P> const & m, T scalar);
122 
123  template<typename T, qualifier P>
124  GLM_FUNC_DECL mat<2, 3, T, P> operator-(mat<2, 3, T, P> const & m1, mat<2, 3, T, P> const & m2);
125 
126  template<typename T, qualifier P>
127  GLM_FUNC_DECL mat<2, 3, T, P> operator*(mat<2, 3, T, P> const & m, T scalar);
128 
129  template<typename T, qualifier P>
130  GLM_FUNC_DECL mat<2, 3, T, P> operator*(T scalar, mat<2, 3, T, P> const & m);
131 
132  template<typename T, qualifier P>
133  GLM_FUNC_DECL typename mat<2, 3, T, P>::col_type operator*(mat<2, 3, T, P> const & m, typename mat<2, 3, T, P>::row_type const & v);
134 
135  template<typename T, qualifier P>
136  GLM_FUNC_DECL typename mat<2, 3, T, P>::row_type operator*(typename mat<2, 3, T, P>::col_type const & v, mat<2, 3, T, P> const & m);
137 
138  template<typename T, qualifier P>
139  GLM_FUNC_DECL mat<2, 3, T, P> operator*(mat<2, 3, T, P> const & m1, mat<2, 2, T, P> const & m2);
140 
141  template<typename T, qualifier P>
142  GLM_FUNC_DECL mat<3, 3, T, P> operator*(mat<2, 3, T, P> const & m1, mat<3, 2, T, P> const & m2);
143 
144  template<typename T, qualifier P>
145  GLM_FUNC_DECL mat<4, 3, T, P> operator*(mat<2, 3, T, P> const & m1, mat<4, 2, T, P> const & m2);
146 
147  template<typename T, qualifier P>
148  GLM_FUNC_DECL mat<2, 3, T, P> operator/(mat<2, 3, T, P> const & m, T scalar);
149 
150  template<typename T, qualifier P>
151  GLM_FUNC_DECL mat<2, 3, T, P> operator/(T scalar, mat<2, 3, T, P> const & m);
152 
153  // -- Boolean operators --
154 
155  template<typename T, qualifier P>
156  GLM_FUNC_DECL bool operator==(mat<2, 3, T, P> const & m1, mat<2, 3, T, P> const & m2);
157 
158  template<typename T, qualifier P>
159  GLM_FUNC_DECL bool operator!=(mat<2, 3, T, P> const & m1, mat<2, 3, T, P> const & m2);
160 }//namespace glm
161 
162 #ifndef GLM_EXTERNAL_TEMPLATE
163 #include "type_mat2x3.inl"
164 #endif
GLM Core
GLM Core
Definition: _noise.hpp:11
GLM_FUNC_DECL T length(vec< L, T, P > const &x)
Returns the length of x, i.e., sqrt(x * x).
GLM Core