contour-creator/src/HeightMap.hh
2024-04-06 17:22:03 +02:00

13 lines
300 B
C++

/**
@brief stores the contents of a tif file with float32 values
*/
class HeightMap
{
public:
float* data;
int x_size; //!< x dimension in pixels
int y_size; //!< y dimension in pixels
HeightMap(const char* filepath);
float get_pixel(int x,int y);
};