/*
 * ENUM: SE_SEARCH_QUALITY_ENUM
 *
 *   Whether to use a point search, bounding box search, or exact search for a
 *   search boundary. Point search is quickest, but is not guaranteed to be
 *   accurate. For a bounding box search, a partial inclusion inclusion_choice
 *   (see SE_CreateSpatialSearchBoundary()) is guaranteed to include all
 *   objects that are partly included in the search area; it may include extra
 *   objects. A box search with full inclusion will return only fully included
 *   objects, but it may miss some objects. An exact search is guaranteed to be
 *   accurate to a small distance.
 */
typedef enum
{
SE_POINT_SEARCH,
SE_BOUNDING_BOX_SEARCH,
SE_EXACT_SEARCH
} SE_SEARCH_QUALITY_ENUM;
Prev: SE_SEARCH_FILTER. Next: SE_SEARCH_RULES. Up:Index