Ported Polygon->split_at()

This commit is contained in:
Alessandro Ranellucci
2013-08-26 22:39:35 +02:00
parent f8ac3aa68f
commit 1f734807b9
7 changed files with 19 additions and 20 deletions

View File

@@ -19,7 +19,7 @@ class Point
void scale(double factor);
void translate(double x, double y);
void rotate(double angle, Point* center);
bool coincides_with(Point* point);
bool coincides_with(const Point* point) const;
};
typedef std::vector<Point> Points;