/*
 * ENUM: SE_OCTANT_ENUM
 *
 *   Used by <Oct Tree Data> to specify which octant of an Oct Tree
 *   is represented by the associated <Feature Hierarchy> (for an
 *   <Oct Tree Related Features>) or <Geometry Hierarchy> (for an
 *   <Oct Tree Related Geometry>).
 *
 *   The numbering of the octants is based upon the region Oct Trees
 *   described in The Design and Analysis of Spatial Data Structures, by
 *   Hanan Samet, Addison-Wesley, 1990.
 */
typedef enum
{
SE_UPPER_SW_OCTANT = 1,
SE_UPPER_NW_OCTANT,
SE_LOWER_SW_OCTANT,
SE_LOWER_NW_OCTANT,
SE_UPPER_SE_OCTANT,
SE_UPPER_NE_OCTANT,
SE_LOWER_SE_OCTANT,
SE_LOWER_NE_OCTANT
} SE_OCTANT_ENUM;
Prev: SE_MULTIPLICITY_ENUM. Next: SE_ORDERED_UNION_TYPE_ENUM. Up:Index