|
|
@@ -43,9 +43,11 @@ template < typename Type >
|
|
|
class Vector2
|
|
|
{
|
|
|
public:
|
|
|
+ /// Default constructor.
|
|
|
+ inline Vector2();
|
|
|
/// Initialising constructor.
|
|
|
/// @param[in] v Initial value of each element in the vector.
|
|
|
- explicit inline Vector2(Type v = Type{ 0 });
|
|
|
+ explicit inline Vector2(Type v);
|
|
|
/// Initialising constructor.
|
|
|
/// @param[in] x Initial x-value of the vector.
|
|
|
/// @param[in] y Initial y-value of the vector.
|