2019-04-14 20:56发布 生成海报
double dot(point a,point b) { return a.x*b.x+a.y*b.y; }
double cross(point a,point b){ return a.x*b.y-a.y*b.x; }