|
The SEDRIS Data Representation Model
APPENDIX C - Types SE_Display_Side |
|---|
/* * ENUM: SE_Display_Side * * This data type is used in <Rendering Properties> to specify * which side or sides of a <Polygon> should be displayed * (single sided vs two sided). It is not applicable if * backface culling is used. */
| typedef | enum | |
| { | ||
| SE_DISP_SIDE_FRONT = 0x0001, | (notes) | |
| SE_DISP_SIDE_BACK = 0x0002 | (notes) |
Display the front side.
Display the back side.
|