mirror of https://github.com/CGAL/cgal
need operator== in point_1
This commit is contained in:
parent
3d69925448
commit
04da5a2dd9
|
|
@ -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
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue