summaryrefslogtreecommitdiff
path: root/geometry
diff options
context:
space:
mode:
Diffstat (limited to 'geometry')
-rw-r--r--geometry/convexHull.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/geometry/convexHull.cpp b/geometry/convexHull.cpp
index 69bbfdf..9c14c45 100644
--- a/geometry/convexHull.cpp
+++ b/geometry/convexHull.cpp
@@ -1,5 +1,4 @@
// Laufzeit: O(n*log(n))
-
ll cross(const pt p, const pt a, const pt b) {
return (a.x - p.x) * (b.y - p.y) - (a.y - p.y) * (b.x - p.x);
}