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 4ba86a0 commit 562eebcCopy full SHA for 562eebc
1 file changed
Geometry/ConvexHullGraham.js
@@ -18,7 +18,7 @@ function orientation (a, b, c) {
18
19
// Clockwise
20
if (alpha > beta) return 1
21
- // Anticlockwise
+ // Anticlockwise
22
else if (beta > alpha) return -1
23
// Colinear
24
return 0
@@ -79,4 +79,4 @@ const points = [
79
{ x: 3, y: 1 },
80
{ x: 3, y: 3 }]
81
82
-convexHull(points);
+convexHull(points)
0 commit comments