Removed the Point::coincides_with_epsilon() method

This commit is contained in:
bubnikv 2018-08-21 09:51:22 +02:00
parent ab60d8adb4
commit c5256bdd2c
3 changed files with 0 additions and 8 deletions

View file

@ -91,7 +91,6 @@ public:
void rotate(double angle, const Point &center);
Point rotated(double angle) const { Point res(*this); res.rotate(angle); return res; }
Point rotated(double angle, const Point &center) const { Point res(*this); res.rotate(angle, center); return res; }
bool coincides_with_epsilon(const Point &point) const;
int nearest_point_index(const Points &points) const;
int nearest_point_index(const PointConstPtrs &points) const;
int nearest_point_index(const PointPtrs &points) const;