/*
 * STRUCT: SE_SPATIAL_INDEX_GENERAL_ORDER
 *
 *   Used to build up the SE_HIERARCHY_ORDER_PARAMETERS struct.
 *
 *   Since for spatial index related there are two indices - the row
 *   index and the column index - it is necessary to define which index
 *   is changed (incremented or decremented) first.  If the user desires
 *   a row major traversal order (row_major = SE_TRUE), then the column
 *   index will change first.  If the user desires a column major traversal
 *   order (row_major = SE_FALSE), then the row index will change first.
 *
 *   See the definitions of the <Spatial Index Related Features>,
 *   <Spatial Index Related Geometry>, <Base Spatial Index Data>,
 *   <Feature Spatial Index Data>, and <Geometry Spatial Index Data>
 *   for more details.
 */
typedef struct
{
SE_RANGE_ORDER_ENUM index_order;
SE_BOOLEAN row_major;
} SE_SPATIAL_INDEX_GENERAL_ORDER;
Prev: SE_SOLID_ENUM. Next: SE_SPATIAL_INDEX_PARAMETERS. Up:Index