00001
00004 #ifndef _FBXSDK_GEOMETRY_BASE_H_
00005 #define _FBXSDK_GEOMETRY_BASE_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 <kaydaradef.h>
00043 #ifndef KFBX_DLL
00044 #define KFBX_DLL K_DLLIMPORT
00045 #endif
00046
00047 #include <kaydara.h>
00048
00049 #include <klib/karrayul.h>
00050
00051 #include <kfbxmath/kfbxvector4.h>
00052
00053 #include <kfbxplugins/kfbxlayercontainer.h>
00054
00055 #include <fbxfilesdk_nsbegin.h>
00056
00057 class KFbxSdkManager;
00058
00063 class KFBX_DLL KFbxGeometryBase : public KFbxLayerContainer
00064 {
00065 KFBXOBJECT_DECLARE(KFbxGeometryBase,KFbxLayerContainer);
00066 public:
00067
00072
00077 virtual void InitControlPoints(int pCount);
00078
00085 void InitNormals(int pCount = 0 );
00086
00091 void InitNormals(KFbxGeometryBase* pSrc);
00092
00103 virtual void SetControlPointAt(KFbxVector4 &pCtrlPoint , KFbxVector4 &pNormal , int pIndex, bool pI2DSearch = false);
00104
00105
00112 virtual void SetControlPointAt(KFbxVector4 &pCtrlPoint , int pIndex);
00113
00123 virtual void SetControlPointNormalAt(KFbxVector4 &pCtrlPoint, int pIndex, bool pI2DSearch=false);
00124
00128 virtual int GetControlPointsCount() const;
00129
00130
00135 virtual KFbxVector4* GetControlPoints() const;
00136
00143 K_DEPRECATED KFbxVector4* GetNormals() const;
00145
00146
00151 KFbxTypedProperty<fbxDouble3> BBoxMin;
00152 KFbxTypedProperty<fbxDouble3> BBoxMax;
00153
00156 void ComputeBBox();
00158
00163 virtual bool ContentWriteTo(KFbxStream& pStream) const;
00164 virtual bool ContentReadFrom(const KFbxStream& pStream);
00166
00167 virtual int MemoryUsage() const;
00168
00170
00171
00172
00173
00174
00175
00177
00178 #ifndef DOXYGEN_SHOULD_SKIP_THIS
00179
00180 bool GetNormals(KFbxLayerElementArrayTemplate<KFbxVector4>** pLockableArray) const;
00181 bool GetNormalsIndices(KFbxLayerElementArrayTemplate<int>** pLockableArray) const;
00182
00183 protected:
00184 KFbxGeometryBase(KFbxSdkManager& pManager, char const* pName);
00185 virtual ~KFbxGeometryBase();
00186
00187 KFbxGeometryBase& operator=(KFbxGeometryBase const& pGeometryBase);
00188 virtual bool ConstructProperties(bool pForceSet);
00189 virtual void ContentClear();
00190
00191 KArrayTemplate<KFbxVector4> mControlPoints;
00192
00193 friend class KFbxGeometryConverter;
00194 friend class KFbxReaderFbx6;
00195 friend class KFbxWriterFbx6;
00196
00197 friend struct KFbxReaderFbx7Impl;
00198 friend struct KFbxWriterFbx7Impl;
00199
00200 #endif // #ifndef DOXYGEN_SHOULD_SKIP_THIS
00201
00202 };
00203
00204 #include <fbxfilesdk_nsend.h>
00205
00206 #endif // #ifndef _FBXSDK_GEOMETRY_BASE_H_
00207
00208