diff --git a/src/HeightMap.cpp b/src/HeightMap.cpp index 6997768..b82e96e 100644 --- a/src/HeightMap.cpp +++ b/src/HeightMap.cpp @@ -1,5 +1,4 @@ #include -#include #include #include "gdal/gdal_priv.h" @@ -40,4 +39,4 @@ float HeightMap::get_pixel(int x, int y) // all the pixels are in an array of floats from left to right, top to bottom int offset = ((this->width * y) + x); return *(this->data + offset); -} \ No newline at end of file +}