removed one dependency

This commit is contained in:
esther 2024-04-10 13:38:53 +02:00
parent 596bc8c4b1
commit 2f90827813
1 changed files with 1 additions and 2 deletions

View File

@ -1,5 +1,4 @@
#include <stdexcept>
#include <stdfloat>
#include <gdal/gdal.h>
#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);
}
}