/*
 * STRUCT: SE_LOD_ENTRY
 *
 *   An array of these make up the SE_LOD_SELECT_PARAMETERS data structure.
 */
typedef struct
{
SE_LOD_DATA_TYPE_ENUM type_of_lod_entry;
union
{
SE_DISTANCE_LEVEL_OF_DETAIL_DATA_FIELDS distance_lod; (notes)
SE_INDEX_LEVEL_OF_DETAIL_DATA_FIELDS index_lod; (notes)
SE_MAP_SCALE_LEVEL_OF_DETAIL_DATA_FIELDS map_scale_lod; (notes)
SE_SPATIAL_RESOLUTION_LEVEL_OF_DETAIL_DATA_FIELDS spatial_resolution_lod; (notes)
SE_VOLUME_LOD_ENTRY volume_lod; (notes)
} u;
} SE_LOD_ENTRY;


Field Notes

distance_lod

 Specifies a minimum and maximum distance.

index_lod

 Specifies a single index.  To specify multiple indices, create
 multiple SE_LOD_ENTRYs, each one defining a single index.

map_scale_lod

 Specifies a map scale.

spatial_resolution_lod

 Specifies a spatial resolution.

volume_lod

 Specifies a volume for which the branch is applicable.
Prev: SE_LEVEL_0_API_FUNCTION_ENUM. Next: SE_LOD_SELECT_PARAMETERS. Up:Index