00001
00004 #ifndef FBXFILESDK_KFBXPLUGINS_KFBXCONSTRAINTSCALE_H
00005 #define FBXFILESDK_KFBXPLUGINS_KFBXCONSTRAINTSCALE_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
00042 #include <fbxfilesdk/components/kbaselib/kaydaradef_h.h>
00043 #include <fbxfilesdk/components/kbaselib/kaydara.h>
00044
00045 #include <fbxfilesdk/kfbxplugins/kfbxconstraint.h>
00046 #include <fbxfilesdk/kfbxplugins/kfbxgroupname.h>
00047
00048 #include <fbxfilesdk/components/kbaselib/klib/kerror.h>
00049
00050 #include <fbxfilesdk/fbxfilesdk_nsbegin.h>
00051
00052 class KFbxSdkManager;
00053 class KFbxVector4;
00054
00059 class KFBX_DLL KFbxConstraintScale : public KFbxConstraint
00060 {
00061 KFBXOBJECT_DECLARE(KFbxConstraintScale,KFbxConstraint);
00066 KFbxTypedProperty<fbxBool1> Lock;
00067 KFbxTypedProperty<fbxBool1> Active;
00068
00069 KFbxTypedProperty<fbxBool1> AffectX;
00070 KFbxTypedProperty<fbxBool1> AffectY;
00071 KFbxTypedProperty<fbxBool1> AffectZ;
00072
00073 KFbxTypedProperty<fbxDouble3> Scaling;
00074 KFbxTypedProperty<fbxDouble1> Weight;
00075
00076 KFbxTypedProperty<fbxReference> ConstraintSources;
00077 KFbxTypedProperty<fbxReference> ConstrainedObject;
00079
00080 public:
00084 void SetLock(bool pLock);
00085
00089 bool GetLock();
00090
00094 void SetActive(bool pActive);
00095
00099 bool GetActive();
00100
00104 void SetAffectX(bool pAffect);
00105
00109 bool GetAffectX();
00110
00114 void SetAffectY(bool pAffect);
00115
00119 bool GetAffectY();
00120
00124 void SetAffectZ(bool pAffect);
00125
00129 bool GetAffectZ();
00130
00134 virtual void SetOffset(KFbxVector4 pScale);
00135
00139 KFbxVector4 GetOffset();
00140
00144 void SetWeight(double pWeight);
00145
00149 double GetSourceWeight(KFbxObject* pObject);
00150
00155 void AddConstraintSource(KFbxObject* pObject, double pWeight = 100);
00156
00160 int GetConstraintSourceCount();
00161
00166 KFbxObject* GetConstraintSource(int pIndex);
00167
00171 void SetConstrainedObject(KFbxObject* pObject);
00172
00176 KFbxObject* GetConstrainedObject();
00177
00178 #ifndef DOXYGEN_SHOULD_SKIP_THIS
00179
00180
00181 virtual KFbxObject* Clone(KFbxObject* pContainer, KFbxObject::ECloneType pCloneType) const;
00182
00183 protected:
00184
00185 KFbxConstraintScale(KFbxSdkManager& pManager, char const* pName);
00186 ~KFbxConstraintScale();
00187
00188 virtual bool ConstructProperties(bool pForceSet);
00189 virtual void Destruct(bool pRecursive, bool pDependents);
00190
00191 virtual EConstraintType GetConstraintType();
00192 virtual KString GetTypeName() const;
00193 #endif // #ifndef DOXYGEN_SHOULD_SKIP_THIS
00194 };
00195
00196 #include <fbxfilesdk/fbxfilesdk_nsend.h>
00197
00198 #endif // FBXFILESDK_KFBXPLUGINS_KFBXCONSTRAINTSCALE_H
00199