/*
 * ENUM: SE_AXIS_ENUM
 *
 *   Used to identify which axis to rotate around, scale by, or translate
 *   along.
 */
typedef enum
{
SE_X_AXIS,
SE_Y_AXIS,
SE_Z_AXIS,
SE_ALL_AXIS, (notes)
SE_USE_REFERENCE_VECTOR (notes)
} SE_AXIS_ENUM;


Enumerator Notes

SE_ALL_AXIS

 Used for uniform scaling about all axes or translation along
 all axes; not valid for rotation.

SE_USE_REFERENCE_VECTOR

 Used to Rotate, Scale, or Translate about/along an arbitrary
 (producer defined) axis.
Prev: SE_API_ENUM. Next: SE_AXIS_ALIGNMENT_ENUM. Up:Index