#include #include #include #include #include using namespace std; #define esp 1e-8 #define ISZERO(a) (fabs(a)<1e-8) #define ADD 1001 int n; struct Point { double x,y; }a[110],b; double chac(Point q,Point w,Point e,Point r) { return (((w.x-q.x)*(e.y-q.y)-(w.y-q.y)*(e.x-q.x)) * ((w.x-q.x)*(r.y-q.y)-(w.y-q.y)*(r.x-q.x))); } bool calc() { int i=0,ans; double c1,c2,c3; Point c; a[n]=a[0]; while(i