摘要:
在二维平面中,只有点和线,点用两个浮点数数表示,而一条线由两个点确定。 1 const double EPS = 1e-8; //设置精度 2 const double PI = acos(-1.0); //圆周率 3 int sgn(double x) //判断负数 4 { 5 if(fabs(x) operator &(const Line &b)const ;31 };struct Point 该结构不仅可以表示一个点,还可以表示一个以原点为起点的向量。Point Point::operator -(const Point &b)const{ ret... 阅读全文