gwnavgeneration/raster/singlestagepixel.h Source File
Go to the documentation of this file.
12 #ifndef GwNavGen_SingleStagePixel_H
13 #define GwNavGen_SingleStagePixel_H
23 class SingleStagePixel
26 SingleStagePixel() { Clear(); }
29 m_min(min_), m_max(max_)
45 return value >= m_min && value <= m_max;
50 if (value < m_min) m_min = value;
51 if (value > m_max) m_max = value;
56 if (down < m_min) m_min = down;
57 if (up > m_max) m_max = up;
62 if (up > m_max) m_max = up;
67 if (down < m_min) m_min = down;
#define KyFloat32MAXVAL
The maximum value that can be stored in the KyFloat32 variable type.
Definition: types.h:227
Definition: gamekitcrowddispersion.h:20
float KyFloat32
Type used internally to represent a 32-bit floating-point number.
Definition: types.h:43