Go to the
documentation of this file.
00001
00004 #ifndef FBXFILESDK_KFBXPLUGINS_KFBXNODEATTRIBUTE_H
00005 #define FBXFILESDK_KFBXPLUGINS_KFBXNODEATTRIBUTE_H
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041 #include <fbxfilesdk/fbxfilesdk_def.h>
00042
00043 #include <fbxfilesdk/components/kbaselib/klib/karrayul.h>
00044 #include <fbxfilesdk/components/kbaselib/klib/kstringlist.h>
00045 #include <fbxfilesdk/kfbxplugins/kfbxobject.h>
00046
00047 #include <fbxfilesdk/fbxfilesdk_nsbegin.h>
00048
00049 class KFbxNode;
00050 class KFbxSdkManager;
00051
00057 class KFBX_DLL KFbxNodeAttribute : public KFbxObject
00058 {
00059 KFBXOBJECT_DECLARE(KFbxNodeAttribute, KFbxObject);
00060
00061 public:
00063 static const char* sColor;
00064
00066 static const fbxDouble3 sDefaultColor;
00067
00072 KFbxTypedProperty<fbxDouble3> Color;
00073
00098 typedef enum
00099 {
00100 eUNIDENTIFIED,
00101 eNULL,
00102 eMARKER,
00103 eSKELETON,
00104 eMESH,
00105 eNURB,
00106 ePATCH,
00107 eCAMERA,
00108 eCAMERA_STEREO,
00109 eCAMERA_SWITCHER,
00110 eLIGHT,
00111 eOPTICAL_REFERENCE,
00112 eOPTICAL_MARKER,
00113 eNURBS_CURVE,
00114 eTRIM_NURBS_SURFACE,
00115 eBOUNDARY,
00116 eNURBS_SURFACE,
00117 eSHAPE,
00118 eLODGROUP,
00119 eSUBDIV,
00120 eCACHED_EFFECT,
00121 eLINE
00122 } EAttributeType;
00123
00127 virtual EAttributeType GetAttributeType() const;
00128
00132 int GetNodeCount() const;
00133
00138 KFbxNode* GetNode(int pIndex=0) const;
00139
00141
00142
00143
00144
00145
00146
00148 #ifndef DOXYGEN_SHOULD_SKIP_THIS
00149 protected:
00150 KFbxNodeAttribute(KFbxSdkManager& pManager, char const* pName);
00151 virtual bool ConstructProperties(bool pForceSet);
00152
00153 friend class KFbxNode;
00154 friend class KFbxScene;
00155 #endif // #ifndef DOXYGEN_SHOULD_SKIP_THIS
00156 };
00157
00158 typedef KFbxNodeAttribute* HKFbxNodeAttribute;
00159
00160 #include <fbxfilesdk/fbxfilesdk_nsend.h>
00161
00162 #endif // FBXFILESDK_KFBXPLUGINS_KFBXNODEATTRIBUTE_H
00163