We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d7e6f0 commit a8b3ec7Copy full SHA for a8b3ec7
content/geometry/HalfPlane.h
@@ -14,7 +14,6 @@
14
#include "Point.h"
15
#include "sideOf.h"
16
#include "lineIntersection.h"
17
-#include "lineDistance.h"
18
19
typedef Point<double> P;
20
typedef array<P, 2> Line;
@@ -26,7 +25,6 @@ bool cmp(Line a, Line b) {
26
25
auto s = angDiff(a, b);
27
return s == 0 ? sideOf(sp(b), a[0]) >= 0 : s < 0;
28
}
29
-double mxErr1 = 0, mxErr2 = 0;
30
vector<P> halfPlaneIntersection(vector<Line> vs) {
31
sort(all(vs), cmp);
32
vector<Line> deq(sz(vs) + 5);
0 commit comments