#include "point.h"
/*********************************************
** FUNCTION DEFINITIONS
*********************************************/
void read(point &p, istream &IN)
{
char c;
IN >> c >> p.x >> c >> p.y >> c;
}
void write(point p, ostream &OUT)
{
OUT << '(' << p.x << ',' << p.y << ')';
}
point add(point a, point b)
{
point S;
S.x = a.x + b.x;
S.y = a.y + b.y;
return S;
}
point div(point P, double z)
{
point Q;
Q.x = P.x / z;
Q.y = P.y / z;
return Q;
}