#include "seek.h"
Variables | |
const char * | seekBiffKey = "seek" |
char | _seekTypeStr [SEEK_TYPE_MAX+1][AIR_STRLEN_SMALL] |
char | _seekTypeDesc [SEEK_TYPE_MAX+1][AIR_STRLEN_MED] |
char | _seekTypeStrEqv [][AIR_STRLEN_SMALL] |
int | _seekTypeValEqv [] |
airEnum | _seekType |
airEnum * | seekType = &_seekType |
Initial value:
{ "format", SEEK_TYPE_MAX, _seekTypeStr, NULL, _seekTypeDesc, _seekTypeStrEqv, _seekTypeValEqv, AIR_FALSE }
char _seekTypeDesc[SEEK_TYPE_MAX+1][AIR_STRLEN_MED] |
Initial value:
{ "unknown_feature", "standard marching cubes surface", "ridge surface", "valley surface", "ridge line", "valley line", "minimal surface", "maximal surface", }
char _seekTypeStr[SEEK_TYPE_MAX+1][AIR_STRLEN_SMALL] |
Initial value:
{ "(unknown_feature)", "isocontour", "ridge surface", "valley surface", "ridge line", "valley line", "minimal surface", "maximal surface", }
char _seekTypeStrEqv[][AIR_STRLEN_SMALL] |
Initial value:
{ "isocontour", "ridge surface", "ridgesurface", "rs", "valley surface", "valleysurface", "vs", "ridge line", "ridgeline", "rl", "valley line", "valleyline", "vl", "minimal surface", "mins", "maximal surface", "maxs", "" }
int _seekTypeValEqv[] |
Initial value:
{ seekTypeIsocontour, seekTypeRidgeSurface, seekTypeRidgeSurface, seekTypeRidgeSurface, seekTypeValleySurface, seekTypeValleySurface, seekTypeValleySurface, seekTypeRidgeLine, seekTypeRidgeLine, seekTypeRidgeLine, seekTypeValleyLine, seekTypeValleyLine, seekTypeValleyLine, seekTypeMinimalSurface, seekTypeMinimalSurface, seekTypeMaximalSurface, seekTypeMaximalSurface, }
const char* seekBiffKey = "seek" |