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: VEX_VexTypes.h ( VEX Library, C++) 00014 * 00015 * COMMENTS: Data types for VEX variables 00016 */ 00017 00018 #ifndef __VEX_VexTypes__ 00019 #define __VEX_VexTypes__ 00020 00021 #include "VEX_API.h" 00022 00023 typedef enum { 00024 VEX_TYPE_UNDEF, // Unknown type 00025 00026 VEX_TYPE_POINT, // Four scalars 00027 VEX_TYPE_VECTOR, // Three scalars 00028 VEX_TYPE_FLOAT, // A single scalar value 00029 VEX_TYPE_INTEGER, // A single integer value 00030 VEX_TYPE_STRING, // A character string 00031 VEX_TYPE_MATRIX3, // A 3x3 (rotation) matrix 00032 VEX_TYPE_MATRIX4, // A 4x4 (transform) matrix 00033 VEX_TYPE_BSDF, // A BSDF 00034 00035 VEX_MAX_TYPES // Sentinal 00036 } VEX_Type; 00037 00038 #endif
1.5.9