@@ -99,7 +99,8 @@ namespace oxygine
}
template <class T>
- VectorT2<T>::VectorT2()
+ VectorT2<T>::VectorT2():
+ x(0), y(0)
{}
@@ -86,7 +86,8 @@ namespace oxygine
- VectorT3<T>::VectorT3()
+ VectorT3<T>::VectorT3():
+ x(0), y(0), z(0)
@@ -72,7 +72,8 @@ namespace oxygine
- VectorT4<T>::VectorT4()
+ VectorT4<T>::VectorT4():
+ x(0), y(0), z(0), w(0)