const Vector2f Vector2f::operator-(const Vector2f &other) const
{
	Vector2f result;
	result.SetX(_x - other.GetX());
	result.SetY(_y - other.GetY());
	return result;
}