summaryrefslogtreecommitdiffstats
path: root/Polygon.h
diff options
context:
space:
mode:
Diffstat (limited to 'Polygon.h')
-rw-r--r--Polygon.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Polygon.h b/Polygon.h
index 2a79a94..093a160 100644
--- a/Polygon.h
+++ b/Polygon.h
@@ -13,7 +13,7 @@ class Polygon : public std::vector<Vertex> {
double perimeter() const;
bool contains(const Vertex &v) const;
- bool intersects(const LINE *l) const;
+ bool intersects(const Line &l) const;
};
#endif /*POLYGON_H_*/