From 04da5a2dd9e28f09f33fa0ccba1433c1a2cbdad0 Mon Sep 17 00:00:00 2001 From: Daniel Russel Date: Thu, 8 Mar 2007 01:47:03 +0000 Subject: [PATCH] need operator== in point_1 --- .../CGAL/Kinetic/internal/Kernel/Cartesian_moving_point_1.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Kinetic_data_structures/include/CGAL/Kinetic/internal/Kernel/Cartesian_moving_point_1.h b/Kinetic_data_structures/include/CGAL/Kinetic/internal/Kernel/Cartesian_moving_point_1.h index 7763e4e5662..65b444e3c4b 100644 --- a/Kinetic_data_structures/include/CGAL/Kinetic/internal/Kernel/Cartesian_moving_point_1.h +++ b/Kinetic_data_structures/include/CGAL/Kinetic/internal/Kernel/Cartesian_moving_point_1.h @@ -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 {