The SEDRIS Data Representation Model
APPENDIX C - Types SE_Octant |
---|
/* * ENUM: SE_Octant * * This data type specifies which octant contains the data of * interest. It is used by an <Octant Data> instance to specify * which octant is represented by the associated <Feature Hierarchy> * instance (for an <Octant Related Features> instance) or * <Geometry Hierarchy> instance (for an <Octant Related Geometry> * instance). * * Octants an be used to specify octrees [SAMET]. */typedef enum
SE_OCTANT_UPPER_LEFT_FRONT, | 1 | |
SE_OCTANT_UPPER_LEFT_BACK, | 2 | |
SE_OCTANT_LOWER_LEFT_FRONT, | 3 | |
SE_OCTANT_LOWER_LEFT_BACK, | 4 | |
SE_OCTANT_UPPER_RIGHT_FRONT, | 5 | |
SE_OCTANT_UPPER_RIGHT_BACK, | 6 | |
SE_OCTANT_LOWER_RIGHT_FRONT, | 7 | |
SE_OCTANT_LOWER_RIGHT_BACK | 8 |
1 Upper left front octant.
2 Upper left back octant.
3 Lower left front octant.
4 Lower left back octant.
5 Upper right front octant.
6 Upper right back octant.
7 Lower right front octant.
8 Lower right back octant.
|