contour-creator/src/CaseMap.hh

13 lines
317 B
C++

/**
@brief stores the cases from marching squars for one elevation level
*/
class CaseMap
{
public:
int* cases;
int width; //!< width of image in cases
int height; //!< height of image in cases
CaseMap(int width, int height, int* cases);
int get_case(int x,int y);
};