diff options
Diffstat (limited to 'Polygon.h')
-rw-r--r-- | Polygon.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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_*/ |