15         template<
typename T, qualifier P>
 
   16         struct mat<2, 3, T, P>
 
   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;
 
   30                 typedef length_t length_type;
 
   31                 GLM_FUNC_DECL 
static GLM_CONSTEXPR length_type 
length() { 
return 2; }
 
   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<2, 3, T, P> const & m) GLM_DEFAULT;
 
   41                 GLM_FUNC_DECL mat(mat<2, 3, T, Q> const & m);
 
   43                 GLM_FUNC_DECL explicit mat(T scalar);
 
   53                 template<typename X1, typename Y1, typename Z1, typename X2, typename Y2, typename Z2>
 
   58                 template<typename U, typename V>
 
   60                         vec<3, U, P> const & v1,
 
   61                         vec<3, V, P> const & v2);
 
   65                 template<typename U, qualifier Q>
 
   66                 GLM_FUNC_DECL GLM_EXPLICIT mat(mat<2, 3, U, Q> const & m);
 
   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);
 
   79                 GLM_FUNC_DECL mat<2, 3, T, P> & operator=(mat<2, 3, T, P> const & m) GLM_DEFAULT;
 
   82                 GLM_FUNC_DECL mat<2, 3, T, P> & operator=(mat<2, 3, U, P> const & m);
 
   84                 GLM_FUNC_DECL mat<2, 3, T, P> & operator+=(U s);
 
   86                 GLM_FUNC_DECL mat<2, 3, T, P> & operator+=(mat<2, 3, U, P> const & m);
 
   88                 GLM_FUNC_DECL mat<2, 3, T, P> & operator-=(U s);
 
   90                 GLM_FUNC_DECL mat<2, 3, T, P> & operator-=(mat<2, 3, U, P> const & m);
 
   92                 GLM_FUNC_DECL mat<2, 3, T, P> & operator*=(U s);
 
   94                 GLM_FUNC_DECL mat<2, 3, T, P> & operator/=(U s);
 
   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);
 
  106         template<typename T, qualifier P>
 
  107         GLM_FUNC_DECL mat<2, 3, T, P> operator+(mat<2, 3, T, P> const & m);
 
  109         template<typename T, qualifier P>
 
  110         GLM_FUNC_DECL mat<2, 3, T, P> operator-(mat<2, 3, T, P> const & m);
 
  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);
 
  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);
 
  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);
 
  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);
 
  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);
 
  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);
 
  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);
 
  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);
 
  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);
 
  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);
 
  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);
 
  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);
 
  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);
 
  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);
 
  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);
 
  162 #ifndef GLM_EXTERNAL_TEMPLATE 
  163 #include "type_mat2x3.inl" 
GLM_FUNC_DECL T length(vec< L, T, P > const &x)
Returns the length of x, i.e., sqrt(x * x).