00001
00002
00004
00005
00006
00007
00009
00010 #ifndef glm_core_type_mat3x2
00011 #define glm_core_type_mat3x2
00012
00013 #include "type_size.hpp"
00014
00015 namespace glm
00016 {
00017 namespace test
00018 {
00019 void main_mat3x2();
00020 }
00021
00022 namespace detail
00023 {
00024 template <typename T> struct tvec1;
00025 template <typename T> struct tvec2;
00026 template <typename T> struct tvec3;
00027 template <typename T> struct tvec4;
00028 template <typename T> struct tmat2x2;
00029 template <typename T> struct tmat2x3;
00030 template <typename T> struct tmat2x4;
00031 template <typename T> struct tmat3x2;
00032 template <typename T> struct tmat3x3;
00033 template <typename T> struct tmat3x4;
00034 template <typename T> struct tmat4x2;
00035 template <typename T> struct tmat4x3;
00036 template <typename T> struct tmat4x4;
00037
00039 template <typename T>
00040 struct tmat3x2
00041 {
00042 public:
00043 typedef tmat3x2<T>* pointer;
00044 typedef const tmat3x2<T>* const_pointer;
00045 typedef const tmat3x2<T>*const const_pointer_const;
00046 typedef tmat3x2<T>*const pointer_const;
00047 typedef tmat3x2<T>& reference;
00048 typedef const tmat3x2<T>& const_reference;
00049 typedef const tmat3x2<T>& param_type;
00050 typedef tmat2x3<T> transpose_type;
00051
00052 typedef T value_type;
00053 typedef detail::tvec3<T> col_type;
00054 typedef detail::tvec2<T> row_type;
00055 typedef glm::sizeType size_type;
00056 static size_type col_size();
00057 static size_type row_size();
00058 static bool is_matrix();
00059
00060 public:
00061 tmat2x3<T> _inverse() const;
00062
00063 private:
00064
00065 detail::tvec2<T> value[3];
00066
00067 public:
00068
00069 tmat3x2();
00070 explicit tmat3x2(const T x);
00071 explicit tmat3x2(
00072 const T x0, const T y0,
00073 const T x1, const T y1,
00074 const T x2, const T y2);
00075 explicit tmat3x2(
00076 const detail::tvec2<T>& v0,
00077 const detail::tvec2<T>& v1,
00078 const detail::tvec2<T>& v2);
00079
00080
00081 template <typename U>
00082 explicit tmat3x2(const tmat3x2<U>& m);
00083
00084 explicit tmat3x2(const tmat2x2<T>& x);
00085 explicit tmat3x2(const tmat3x3<T>& x);
00086 explicit tmat3x2(const tmat4x4<T>& x);
00087 explicit tmat3x2(const tmat2x3<T>& x);
00088 explicit tmat3x2(const tmat2x4<T>& x);
00089 explicit tmat3x2(const tmat3x4<T>& x);
00090 explicit tmat3x2(const tmat4x2<T>& x);
00091 explicit tmat3x2(const tmat4x3<T>& x);
00092
00093
00094 detail::tvec2<T>& operator[](size_type i);
00095 const detail::tvec2<T>& operator[](size_type i) const;
00096
00097
00098 tmat3x2<T>& operator= (const tmat3x2<T>& m);
00099 tmat3x2<T>& operator+= (const T & s);
00100 tmat3x2<T>& operator+= (const tmat3x2<T>& m);
00101 tmat3x2<T>& operator-= (const T & s);
00102 tmat3x2<T>& operator-= (const tmat3x2<T>& m);
00103 tmat3x2<T>& operator*= (const T & s);
00104 tmat3x2<T>& operator*= (const tmat2x3<T>& m);
00105 tmat3x2<T>& operator/= (const T & s);
00106
00107
00108 tmat3x2<T>& operator++ ();
00109 tmat3x2<T>& operator-- ();
00110 };
00111
00112
00113 template <typename T>
00114 tmat3x2<T> operator+ (const tmat3x2<T>& m, const T & s);
00115
00116 template <typename T>
00117 tmat3x2<T> operator+ (const tmat3x2<T>& m1, const tmat3x2<T>& m2);
00118
00119 template <typename T>
00120 tmat3x2<T> operator- (const tmat3x2<T>& m, const T & s);
00121
00122 template <typename T>
00123 tmat3x2<T> operator- (const tmat3x2<T>& m1, const tmat3x2<T>& m2);
00124
00125 template <typename T>
00126 tmat3x2<T> operator* (const tmat3x2<T>& m, const T & s);
00127
00128 template <typename T>
00129 tmat3x2<T> operator* (const T & s, const tmat3x4<T>& m);
00130
00131 template <typename T>
00132 detail::tvec2<T> operator* (const tmat3x2<T>& m, const detail::tvec3<T>& v);
00133
00134 template <typename T>
00135 detail::tvec3<T> operator* (const detail::tvec2<T>& v, const tmat3x2<T>& m);
00136
00137 template <typename T>
00138 tmat2x2<T> operator* (const tmat3x2<T>& m1, const tmat2x3<T>& m2);
00139
00140 template <typename T>
00141 tmat2x3<T> operator/ (const tmat2x3<T>& m, const T & s);
00142
00143 template <typename T>
00144 tmat2x3<T> operator/ (const T s, const tmat2x3<T>& m);
00145
00146
00147
00148
00149
00150
00151
00152
00153
00154
00155
00156 template <typename valType>
00157 tmat3x2<valType> const operator- (tmat3x2<valType> const & m);
00158
00159 template <typename valType>
00160 tmat3x2<valType> const operator-- (tmat3x2<valType> const & m, int);
00161
00162 template <typename valType>
00163 tmat3x2<valType> const operator++ (tmat3x2<valType> const & m, int);
00164
00165 }
00166
00167 namespace core{
00168 namespace type{
00169 namespace matrix{
00170
00171 namespace precision
00172 {
00176 typedef detail::tmat3x2<lowp_float> lowp_mat3x2;
00180 typedef detail::tmat3x2<mediump_float> mediump_mat3x2;
00184 typedef detail::tmat3x2<highp_float> highp_mat3x2;
00185 }
00186
00187
00188 #ifndef GLM_PRECISION
00191 typedef detail::tmat3x2<mediump_float> mat3x2;
00192 #elif(GLM_PRECISION & GLM_PRECISION_HIGH)
00193 typedef detail::tmat3x2<highp_float> mat3x2;
00194 #elif(GLM_PRECISION & GLM_PRECISION_MEDIUM)
00195 typedef detail::tmat3x2<mediump_float> mat3x2;
00196 #elif(GLM_PRECISION & GLM_PRECISION_LOW)
00197 typedef detail::tmat3x2<lowp_float> mat3x2;
00198 #else
00199 typedef detail::tmat3x2<mediump_float> mat3x2;
00200 #endif//GLM_PRECISION
00201
00202 }
00203 }
00204 }
00205 }
00206
00207 #include "type_mat3x2.inl"
00208
00209 #endif //glm_core_type_mat3x2