fbxsdk/scene/geometry/fbxdeformer.h Source File

fbxdeformer.h
Go to the documentation of this file.
1 /****************************************************************************************
2 
3  Copyright (C) 2015 Autodesk, Inc.
4  All rights reserved.
5 
6  Use of this software is subject to the terms of the Autodesk license agreement
7  provided at the time of installation or download, or which otherwise accompanies
8  this software in either electronic or hard copy form.
9 
10 ****************************************************************************************/
11 
13 #ifndef _FBXSDK_SCENE_GEOMETRY_DEFORMER_H_
14 #define _FBXSDK_SCENE_GEOMETRY_DEFORMER_H_
15 
16 #include <fbxsdk/fbxsdk_def.h>
17 
18 #include <fbxsdk/core/fbxobject.h>
19 #include <fbxsdk/fbxsdk_nsbegin.h>
20 
39 {
41 
42 public:
53  void SetMultiLayer(bool pMultiLayer);
54 
58  bool GetMultiLayer() const;
60 
68  {
72  eVertexCache
73  };
74 
78  virtual EDeformerType GetDeformerType() const { return eUnknown; }
80 
81 /*****************************************************************************************************************************
82 ** WARNING! Anything beyond these lines is for internal use, may not be documented and is subject to change without notice! **
83 *****************************************************************************************************************************/
84 #ifndef DOXYGEN_SHOULD_SKIP_THIS
85 protected:
86  virtual void Construct(const FbxObject* pFrom);
87  virtual FbxStringList GetTypeFlags() const { return FbxStringList(); }
88 
89  bool mMultiLayer;
90 #endif /* !DOXYGEN_SHOULD_SKIP_THIS *****************************************************************************************/
91 };
92 
93 #include <fbxsdk/fbxsdk_nsend.h>
94 
95 #endif /* _FBXSDK_SCENE_GEOMETRY_DEFORMER_H_ */
#define FBXSDK_OBJECT_DECLARE(Class, Parent)
Macro used to declare a new class derived from FbxObject.
Definition: fbxobject.h:61
FBX SDK environment definition.
Type FbxBlendShape.
Definition: fbxdeformer.h:71
Array that stores pairs of FbxString and a pointer.
The base class of most FBX objects.
Definition: fbxobject.h:157
EDeformerType
Deformer types.
Definition: fbxdeformer.h:67
virtual EDeformerType GetDeformerType() const
Get the deformer type.
Definition: fbxdeformer.h:78
Type FbxSkin.
Definition: fbxdeformer.h:70
virtual void Construct(const FbxObject *pFrom)
Optional constructor override, automatically called by default constructor.
Base class for skin deformer (FbxSkin) and vertex cache deformer (FbxVertexCacheDeformer).
Definition: fbxdeformer.h:38
#define FBXSDK_DLL
Definition: fbxarch.h:173
Unknown deformer type.
Definition: fbxdeformer.h:69