Skip to content

Commit 101dea5

Browse files
committed
Update convex-hull.md
1 parent f811910 commit 101dea5

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/geometry/convex-hull.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,6 @@ of the algorithm, otherwise you wouldn't get the smallest convex hull.
4747
```{.cpp file=graham_scan}
4848
struct pt {
4949
double x, y;
50-
pt() {}
51-
pt(double x, double y): x(x), y(y) {}
5250
bool operator == (pt const& t) const {
5351
return x == t.x && y == t.y;
5452
}

0 commit comments

Comments
 (0)