/*
 * ENUM: SE_DISPLAY_SIDE_ENUM
 *
 *   Used in <Rendering Properties> to specify which side or sides of a
 *   <Polygon> should be displayed (single sided vs two sided).
 *   N/A if backfaced culling used.
 */
typedef enum
{
SE_FRONT_SIDES = 0x0001, (notes)
SE_BACK_SIDES = 0x0002 (notes)
} SE_DISPLAY_SIDE_ENUM;


Enumerator Notes

SE_FRONT_SIDES

 only display the front side of a <Polygon>

SE_BACK_SIDES

 only display the back side of a <Polygon>
Prev: SE_COLOR_MAPPING_ENUM. Next: SE_DISPLAY_STYLE_ENUM. Up:Index