|
|
@@ -58,6 +58,24 @@ namespace detail
|
|
|
this->value[2] = col_type(0, 0);
|
|
|
}
|
|
|
|
|
|
+ template <typename T>
|
|
|
+ inline tmat3x2<T>::tmat3x2
|
|
|
+ (
|
|
|
+ tmat3x2<T> const & m
|
|
|
+ )
|
|
|
+ {
|
|
|
+ this->value[0] = m.value[0];
|
|
|
+ this->value[1] = m.value[1];
|
|
|
+ this->value[2] = m.value[2];
|
|
|
+ }
|
|
|
+
|
|
|
+ template <typename T>
|
|
|
+ inline tmat3x2<T>::tmat3x2
|
|
|
+ (
|
|
|
+ ctor
|
|
|
+ )
|
|
|
+ {}
|
|
|
+
|
|
|
template <typename T>
|
|
|
inline tmat3x2<T>::tmat3x2
|
|
|
(
|