class Vehicle; class Point { private: float x, y; public: Point(float x = 0,float y = 0){ this->x = x; this->y = y; } void move_nor