HDK
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
UT_Axis.h
Go to the documentation of this file.
1 /*
2  * PROPRIETARY INFORMATION. This software is proprietary to
3  * Side Effects Software Inc., and is not to be reproduced,
4  * transmitted, or disclosed in any way without written permission.
5  *
6  * NAME: UT_Axis.h (C++)
7  *
8  * COMMENTS: Axes for performing rotations
9  *
10  */
11 
12 #ifndef __UT_Axis_h__
13 #define __UT_Axis_h__
14 
15 #include "UT_API.h"
16 // Dummy class to avoid global namespace pollution
18 public:
19  // Enumerator for the 3 possible axes. Always use it with the scope
20  // operator: UT_Axis3::axis, UT_Axis3::XAXIS, etc.
21  // The axis values must be powers of 2.
22  enum axis { XAXIS=1, YAXIS=2, ZAXIS=4 };
23 };
24 
25 #endif
#define UT_API
Definition: UT_API.h:14