00001 /* 00002 * PROPRIETARY INFORMATION. This software is proprietary to 00003 * Side Effects Software Inc., and is not to be reproduced, 00004 * transmitted, or disclosed in any way without written permission. 00005 * 00006 * Produced by: 00007 * Side Effects Software Inc. 00008 * 477 Richmond Street West 00009 * Toronto, Ontario 00010 * Canada M5V 3E7 00011 * 416-504-9876 00012 * 00013 * NAME: UT_Axis.h (C++) 00014 * 00015 * COMMENTS: Axes for performing rotations 00016 * 00017 */ 00018 00019 #ifndef __UT_Axis_h__ 00020 #define __UT_Axis_h__ 00021 00022 #include "UT_API.h" 00023 // Dummy class to avoid global namespace pollution 00024 class UT_API UT_Axis3 { 00025 public: 00026 // Enumerator for the 3 possible axes. Always use it with the scope 00027 // operator: UT_Axis3::axis, UT_Axis3::XAXIS, etc. 00028 // The axis values must be powers of 2. 00029 enum axis { XAXIS=1, YAXIS=2, ZAXIS=4 }; 00030 }; 00031 00032 #endif
1.5.9