From 33dd409c43c3b721f4e3105e17a54ad370c76277 Mon Sep 17 00:00:00 2001 From: esther Date: Mon, 29 Apr 2024 14:56:06 +0200 Subject: [PATCH] changed contour creator --- src/contour_creator.hh | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/src/contour_creator.hh b/src/contour_creator.hh index 87d5066..54d29b9 100644 --- a/src/contour_creator.hh +++ b/src/contour_creator.hh @@ -35,4 +35,18 @@ class CellMap OGRSpatialReference reference_system; CellMap(int width, int height, uint8_t* cells, OGRSpatialReference reference_system, double* geotransform); int get_cell(int x,int y); -}; \ No newline at end of file +}; + +class Point +{ + public: + int x; + int y; + int mscase; + Point(int x, int y, int mscase){ + this -> x = x; + this -> y = y; + this -> mscase = mscase; + + }; +};