Math/VectorI: Remove array constructor

This commit is contained in:
Lynix
2018-02-18 18:57:30 +01:00
parent b2d10f6e69
commit 0063ca9950
9 changed files with 8 additions and 44 deletions

View File

@@ -25,7 +25,6 @@ namespace Nz
Vector3(T X, T Y, T Z);
Vector3(T X, const Vector2<T>& vec);
explicit Vector3(T scale);
explicit Vector3(const T vec[3]);
Vector3(const Vector2<T>& vec, T Z = 0.0);
template<typename U> explicit Vector3(const Vector3<U>& vec);
Vector3(const Vector3& vec) = default;