#include "point.h"
#include <math.h>

void Point::move(float x, float y)
{
    this->_x += x;
    this->_y += y;
}

float Point::abs() const
{
    return sqrtf(this->_x*this->_x + this->_y*this->_y);
}
