osgEarth 2.1.1
|
#include <osgEarth/ImageToHeightFieldConverter>
#include <osg/Notify>
#include <limits.h>
#include <string.h>
Go to the source code of this file.
Functions | |
static bool | isNoData (short s) |
static bool | isNoData (float f) |
static bool isNoData | ( | short | s | ) | [static] |
Definition at line 28 of file ImageToHeightFieldConverter.cpp.
{
return s == SHRT_MAX || s == SHRT_MIN;
}
static bool isNoData | ( | float | f | ) | [static] |
Definition at line 34 of file ImageToHeightFieldConverter.cpp.
{
return f == FLT_MAX || f == FLT_MIN;
}