#include "ponto.h" ponto::ponto(){ this->x=this->y=0; } ponto::ponto(int _x,int _y){ this->x=_x; this->y=_y; } int ponto::getX(){ return this->x; } int ponto::getY(){ return this->y; } void ponto::setX(int x){ this->x=x; } void ponto::setY(int y){ this->y=y; }