Ejemplo n.º 1
0
 double rad(point a,point b) {
     point p=*this;
     return fabs(atan2(fabs(a.sub(p).cross(b.sub(p))),a.sub(p).dot(b.sub(p))));
 }