15 template<
typename T, qualifier P>
16 struct mat<3, 2, T, P>
18 typedef vec<2, T, P> col_type;
19 typedef vec<3, T, P> row_type;
20 typedef mat<3, 2, T, P> type;
21 typedef mat<2, 3, T, P> transpose_type;
30 typedef length_t length_type;
31 GLM_FUNC_DECL
static GLM_CONSTEXPR length_type
length() {
return 3; }
33 GLM_FUNC_DECL col_type & operator[](length_type i);
34 GLM_FUNC_DECL col_type
const & operator[](length_type i)
const;
38 GLM_FUNC_DECL mat() GLM_DEFAULT;
39 GLM_FUNC_DECL mat(mat<3, 2, T, P> const & m) GLM_DEFAULT;
41 GLM_FUNC_DECL mat(mat<3, 2, T, Q> const & m);
43 GLM_FUNC_DECL explicit mat(T scalar);
56 typename X1, typename Y1,
57 typename X2, typename Y2,
58 typename X3, typename Y3>
64 template<typename V1, typename V2, typename V3>
66 vec<2, V1, P> const & v1,
67 vec<2, V2, P> const & v2,
68 vec<2, V3, P> const & v3);
72 template<typename U, qualifier Q>
73 GLM_FUNC_DECL GLM_EXPLICIT mat(mat<3, 2, U, Q> const & m);
75 GLM_FUNC_DECL GLM_EXPLICIT mat(mat<2, 2, T, P> const & x);
76 GLM_FUNC_DECL GLM_EXPLICIT mat(mat<3, 3, T, P> const & x);
77 GLM_FUNC_DECL GLM_EXPLICIT mat(mat<4, 4, T, P> const & x);
78 GLM_FUNC_DECL GLM_EXPLICIT mat(mat<2, 3, T, P> const & x);
79 GLM_FUNC_DECL GLM_EXPLICIT mat(mat<2, 4, T, P> const & x);
80 GLM_FUNC_DECL GLM_EXPLICIT mat(mat<3, 4, T, P> const & x);
81 GLM_FUNC_DECL GLM_EXPLICIT mat(mat<4, 2, T, P> const & x);
82 GLM_FUNC_DECL GLM_EXPLICIT mat(mat<4, 3, T, P> const & x);
86 GLM_FUNC_DECL mat<3, 2, T, P> & operator=(mat<3, 2, T, P> const & m) GLM_DEFAULT;
89 GLM_FUNC_DECL mat<3, 2, T, P> & operator=(mat<3, 2, U, P> const & m);
91 GLM_FUNC_DECL mat<3, 2, T, P> & operator+=(U s);
93 GLM_FUNC_DECL mat<3, 2, T, P> & operator+=(mat<3, 2, U, P> const & m);
95 GLM_FUNC_DECL mat<3, 2, T, P> & operator-=(U s);
97 GLM_FUNC_DECL mat<3, 2, T, P> & operator-=(mat<3, 2, U, P> const & m);
99 GLM_FUNC_DECL mat<3, 2, T, P> & operator*=(U s);
101 GLM_FUNC_DECL mat<3, 2, T, P> & operator/=(U s);
105 GLM_FUNC_DECL mat<3, 2, T, P> & operator++ ();
106 GLM_FUNC_DECL mat<3, 2, T, P> & operator-- ();
107 GLM_FUNC_DECL mat<3, 2, T, P> operator++(
int);
108 GLM_FUNC_DECL mat<3, 2, T, P> operator--(
int);
113 template<typename T, qualifier P>
114 GLM_FUNC_DECL mat<3, 2, T, P> operator+(mat<3, 2, T, P> const & m);
116 template<typename T, qualifier P>
117 GLM_FUNC_DECL mat<3, 2, T, P> operator-(mat<3, 2, T, P> const & m);
121 template<typename T, qualifier P>
122 GLM_FUNC_DECL mat<3, 2, T, P> operator+(mat<3, 2, T, P> const & m, T scalar);
124 template<typename T, qualifier P>
125 GLM_FUNC_DECL mat<3, 2, T, P> operator+(mat<3, 2, T, P> const & m1, mat<3, 2, T, P> const & m2);
127 template<typename T, qualifier P>
128 GLM_FUNC_DECL mat<3, 2, T, P> operator-(mat<3, 2, T, P> const & m, T scalar);
130 template<typename T, qualifier P>
131 GLM_FUNC_DECL mat<3, 2, T, P> operator-(mat<3, 2, T, P> const & m1, mat<3, 2, T, P> const & m2);
133 template<typename T, qualifier P>
134 GLM_FUNC_DECL mat<3, 2, T, P> operator*(mat<3, 2, T, P> const & m, T scalar);
136 template<typename T, qualifier P>
137 GLM_FUNC_DECL mat<3, 2, T, P> operator*(T scalar, mat<3, 2, T, P> const & m);
139 template<typename T, qualifier P>
140 GLM_FUNC_DECL typename mat<3, 2, T, P>::col_type operator*(mat<3, 2, T, P> const & m, typename mat<3, 2, T, P>::row_type const & v);
142 template<typename T, qualifier P>
143 GLM_FUNC_DECL typename mat<3, 2, T, P>::row_type operator*(typename mat<3, 2, T, P>::col_type const & v, mat<3, 2, T, P> const & m);
145 template<typename T, qualifier P>
146 GLM_FUNC_DECL mat<2, 2, T, P> operator*(mat<3, 2, T, P> const & m1, mat<2, 3, T, P> const & m2);
148 template<typename T, qualifier P>
149 GLM_FUNC_DECL mat<3, 2, T, P> operator*(mat<3, 2, T, P> const & m1, mat<3, 3, T, P> const & m2);
151 template<typename T, qualifier P>
152 GLM_FUNC_DECL mat<4, 2, T, P> operator*(mat<3, 2, T, P> const & m1, mat<4, 3, T, P> const & m2);
154 template<typename T, qualifier P>
155 GLM_FUNC_DECL mat<3, 2, T, P> operator/(mat<3, 2, T, P> const & m, T scalar);
157 template<typename T, qualifier P>
158 GLM_FUNC_DECL mat<3, 2, T, P> operator/(T scalar, mat<3, 2, T, P> const & m);
162 template<typename T, qualifier P>
163 GLM_FUNC_DECL
bool operator==(mat<3, 2, T, P> const & m1, mat<3, 2, T, P> const & m2);
165 template<typename T, qualifier P>
166 GLM_FUNC_DECL
bool operator!=(mat<3, 2, T, P> const & m1, mat<3, 2, T, P> const & m2);
170 #ifndef GLM_EXTERNAL_TEMPLATE
171 #include "type_mat3x2.inl"
GLM_FUNC_DECL T length(vec< L, T, P > const &x)
Returns the length of x, i.e., sqrt(x * x).