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
|
//! null
|
||||||
Cartesian_moving_point_1(){}
|
Cartesian_moving_point_1(){}
|
||||||
|
|
||||||
|
bool operator==(const Cartesian_moving_point_1 &o) const {
|
||||||
|
return x() == o.x();
|
||||||
|
}
|
||||||
|
|
||||||
//! homogeneous x
|
//! homogeneous x
|
||||||
const Coordinate &hx() const
|
const Coordinate &hx() const
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue