/*
 * STRUCT: SE_SEARCH_BOUNDS
 *
 *   Boundary values that are passed to SE_CreateSpatialSearchBoundary(). The
 *   minimum point and maximum point must be in the same spatial reference
 *   frame (SRF); specifically, the current user-set SRF when the
 *   SE_SEARCH_BOUNDS is passed to SE_CreateSpatialSearchBoundary().
 *   The minimum point gives the minimum value defining the range for each
 *   coordinate, while the maximum point gives the maximal value. Infinite
 *   values are allowed.
 */
typedef struct
{
SE_COORD minimum_point;
SE_COORD maximum_point;
} SE_SEARCH_BOUNDS;
Prev: SE_SEARCH_BOUNDARY. Next: SE_SEARCH_BOUNDS_CLOSURE_ENUM. Up:Index