mirror of
https://gitlab.com/Trygve/contour-creator.git
synced 2025-04-04 05:47:19 +00:00
13 lines
300 B
C++
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);
|
|
}; |