摘要:
#include <bits/stdc++.h> using namespace std; const double EPS = 1e-8; const int N = 1e5+10; struct Point{ double x, y; }; int n; Point p[N]; bool equ 阅读全文
摘要:
这两天准备学一点计算几何,先来一发基础的计算几何板子 #include <bits/stdc++.h> using namespace std; #define EPS (1e-8) bool equals(double x, double y){ return fabs(x-y) < EPS; } 阅读全文