热门标签
更多>
搜索结果
查询Tags标签: 圆外,共有 2条记录-
最小圆覆盖板子
int sgn(double x) {if(fabs(x) < eps)return 0;else return x<0?-1:1; }; struct Point {double x,y;}; double Distance(Point A,Point B) {return hypot(A.x-B.x,A.y-B.y);}//三角形外接圆圆心 Point circle_center(const Point a,const Point b,const Point c)…
2021/7/29 6:06:22 人评论 次浏览 -
最小圆覆盖板子
int sgn(double x) {if(fabs(x) < eps)return 0;else return x<0?-1:1; }; struct Point {double x,y;}; double Distance(Point A,Point B) {return hypot(A.x-B.x,A.y-B.y);}//三角形外接圆圆心 Point circle_center(const Point a,const Point b,const Point c)…
2021/7/29 6:06:22 人评论 次浏览