Exemplo n.º 1
0
Vector2 Vector2::operator*( Vector2& other )
{
	return Vector2(_self * other.GetSelf());
}
Exemplo n.º 2
0
void Vector2::operator=( Vector2& other )
{
	_self = other.GetSelf();
}