From d75344982e2c3739240ba26081d7b1026a53cab8 Mon Sep 17 00:00:00 2001 From: ParkSuMin Date: Mon, 8 Dec 2025 23:14:55 +0300 Subject: [PATCH] =?UTF-8?q?=D0=9F=D0=B5=D1=80=D0=B5=D0=B3=D1=80=D1=83?= =?UTF-8?q?=D0=B7=D0=BA=D0=B0=20=D0=BE=D0=BF=D0=B5=D1=80=D0=B0=D1=82=D0=BE?= =?UTF-8?q?=D1=80=D0=B0=20=D1=81=D1=80=D0=B0=D0=B2=D0=BD=D0=B5=D0=BD=D0=B8?= =?UTF-8?q?=D1=8F=20=D1=83=20Point?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- GCS/Geo.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/GCS/Geo.h b/GCS/Geo.h index 4ca9c41..229df9a 100644 --- a/GCS/Geo.h +++ b/GCS/Geo.h @@ -68,6 +68,10 @@ public: int get_tag() { return tag; } + + bool operator==(Point p) { + return *x == *p.x && *y == *p.y; + } }; using VEC_P = std::vector;