fbxsdk/scene/geometry/fbxdeformer.h Source File
 
 
 
fbxsdk/scene/geometry/fbxdeformer.h
Go to the documentation of this file.
00001 /****************************************************************************************
00002  
00003    Copyright (C) 2013 Autodesk, Inc.
00004    All rights reserved.
00005  
00006    Use of this software is subject to the terms of the Autodesk license agreement
00007    provided at the time of installation or download, or which otherwise accompanies
00008    this software in either electronic or hard copy form.
00009  
00010 ****************************************************************************************/
00011 
00013 #ifndef _FBXSDK_SCENE_GEOMETRY_DEFORMER_H_
00014 #define _FBXSDK_SCENE_GEOMETRY_DEFORMER_H_
00015 
00016 #include <fbxsdk/fbxsdk_def.h>
00017 
00018 #include <fbxsdk/core/fbxobject.h>
00019 #include <fbxsdk/fbxsdk_nsbegin.h>
00020 
00038 class FBXSDK_DLL FbxDeformer : public FbxObject
00039 {
00040     FBXSDK_OBJECT_DECLARE(FbxDeformer, FbxObject);
00041 
00042 public:
00053         void SetMultiLayer(bool pMultiLayer);
00054 
00058         bool GetMultiLayer() const;
00060 
00067         enum EDeformerType
00068         {
00069             eUnknown,           
00070             eSkin,                      
00071                         eBlendShape,    
00072             eVertexCache        
00073         };
00074 
00078         virtual EDeformerType GetDeformerType() const { return eUnknown; }
00080 
00081 /*****************************************************************************************************************************
00082 ** WARNING! Anything beyond these lines is for internal use, may not be documented and is subject to change without notice! **
00083 *****************************************************************************************************************************/
00084 #ifndef DOXYGEN_SHOULD_SKIP_THIS
00085 protected:
00086         virtual void Construct(const FbxDeformer* pFrom);
00087         virtual FbxStringList GetTypeFlags() const { return FbxStringList(); }
00088 
00089         bool            mMultiLayer;
00090 #endif /* !DOXYGEN_SHOULD_SKIP_THIS *****************************************************************************************/
00091 };
00092 
00093 #include <fbxsdk/fbxsdk_nsend.h>
00094 
00095 #endif /* _FBXSDK_SCENE_GEOMETRY_DEFORMER_H_ */