Skip to content
Permalink
507e57f869
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
79 lines (72 sloc) 1.37 KB
#include "Vector2D.h"
Vector2::Vector2()
{
x = 0.0f;
y = 0.0f;
}
Vector2::Vector2(float x, float y)
{
this->x = x;
this->y = y;
}
Vector2& Vector2::Add(const Vector2& vec)
{
this->x += vec.x;
this->y += vec.y;
return *this;
}
Vector2& Vector2::Subtract(const Vector2& vec)
{
this->x -= vec.x;
this->y -= vec.y;
return *this;
}
Vector2& Vector2::Multiply(const Vector2& vec)
{
this->x *= vec.x;
this->y *= vec.y;
return *this;
}
Vector2& Vector2::Divide(const Vector2& vec)
{
this->x /= vec.x;
this->y /= vec.y;
return *this;
}
Vector2& operator+(Vector2& v1, const Vector2& v2)
{
return v1.Add(v2);
}
Vector2& operator-(Vector2& v1, const Vector2& v2)
{
return v1.Subtract(v2);
}
Vector2& operator*(Vector2& v1, const Vector2& v2)
{
return v1.Multiply(v2);
}
Vector2& operator/(Vector2& v1, const Vector2& v2)
{
return v1.Divide(v2);
}
Vector2& Vector2::operator+=(const Vector2& vec)
{
return this->Add(vec);
}
Vector2& Vector2::operator-=(const Vector2& vec)
{
return this->Subtract(vec);
}
Vector2& Vector2::operator*=(const Vector2& vec)
{
return this->Multiply(vec);
}
Vector2& Vector2::operator/=(const Vector2& vec)
{
return this->Divide(vec);
}
std::ostream& operator<<(std::ostream& stream, const Vector2& vec)
{
stream << "Vector(" << vec.x << "," << vec.y << ")";
return stream;
}