need operator== in point_1

This commit is contained in:
Daniel Russel 2007-03-08 01:47:03 +00:00
parent 3d69925448
commit 04da5a2dd9
1 changed files with 4 additions and 0 deletions

View File

@ -51,6 +51,10 @@ public:
//! null
Cartesian_moving_point_1(){}
bool operator==(const Cartesian_moving_point_1 &o) const {
return x() == o.x();
}
//! homogeneous x
const Coordinate &hx() const
{