Go to the
documentation of this file.
00001
00004 #ifndef FBXFILESDK_KFBXPLUGINS_KFBXBLENDSHAPE_H
00005 #define FBXFILESDK_KFBXPLUGINS_KFBXBLENDSHAPE_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/kfbxplugins/kfbxdeformer.h>
00044 #include <fbxfilesdk/kfbxmath/kfbxmatrix.h>
00045 #include <fbxfilesdk/kfbxplugins/kfbxgroupname.h>
00046
00047 #include <fbxfilesdk/components/kbaselib/klib/kerror.h>
00048
00049 #include <fbxfilesdk/fbxfilesdk_nsbegin.h>
00050
00051 class KFbxSdkManager;
00052 class KFbxGeometry;
00053 class KFbxBlendShapeChannel;
00054 class KFbxNode;
00055
00060 class KFBX_DLL KFbxBlendShape : public KFbxDeformer
00061 {
00062 KFBXOBJECT_DECLARE(KFbxBlendShape,KFbxDeformer);
00063
00064 public:
00072 bool SetGeometry(KFbxGeometry* pGeometry);
00073
00077 KFbxGeometry* GetGeometry();
00078
00083 bool AddBlendShapeChannel(KFbxBlendShapeChannel* pBlendShapeChannel);
00084
00089 KFbxBlendShapeChannel* RemoveBlendShapeChannel(KFbxBlendShapeChannel* pBlendShapeChannel);
00090
00094 int GetBlendShapeChannelCount() const;
00095
00100 KFbxBlendShapeChannel* GetBlendShapeChannel(int pIndex);
00101
00106 KFbxBlendShapeChannel const* GetBlendShapeChannel(int pIndex) const;
00107
00111 EDeformerType GetDeformerType() const {return eBLENDSHAPE; };
00112
00118 void Reset();
00119
00121
00122
00123
00124
00125
00126
00128 #ifndef DOXYGEN_SHOULD_SKIP_THIS
00129
00130 virtual KFbxObject& Copy(const KFbxObject& pObject);
00131
00132 protected:
00133 KFbxBlendShape(KFbxSdkManager& pManager, char const* pName);
00134
00135 virtual KStringList GetTypeFlags() const;
00136
00137 friend class KFbxScene;
00138
00139 #endif // #ifndef DOXYGEN_SHOULD_SKIP_THIS
00140 };
00141
00142 #include <fbxfilesdk/fbxfilesdk_nsend.h>
00143
00144 #endif // FBXFILESDK_KFBXPLUGINS_KFBXBLENDSHAPE_H
00145