diff options
| author | Bryan Galdrikian <[email protected]> | 2019-05-03 00:25:46 -0700 |
|---|---|---|
| committer | Bryan Galdrikian <[email protected]> | 2019-05-03 00:25:46 -0700 |
| commit | 74b64a27f8e07b1b0b47b809b1a060518fa11a97 (patch) | |
| tree | 34cca01711be56892c149706f02ba7358d87ec54 /sdk/extensions/exporter/source/NvBlastExtExporterFbxUtils.h | |
| parent | Fixing chunk reorder bug in BlastTool, when importing a prefractured mesh (diff) | |
| download | blast-74b64a27f8e07b1b0b47b809b1a060518fa11a97.tar.xz blast-74b64a27f8e07b1b0b47b809b1a060518fa11a97.zip | |
Blast SDK 1.1.5 prerelease #1v1.1.5_pre1
Diffstat (limited to 'sdk/extensions/exporter/source/NvBlastExtExporterFbxUtils.h')
| -rwxr-xr-x | sdk/extensions/exporter/source/NvBlastExtExporterFbxUtils.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/sdk/extensions/exporter/source/NvBlastExtExporterFbxUtils.h b/sdk/extensions/exporter/source/NvBlastExtExporterFbxUtils.h index 431d63a..ca5b3a2 100755 --- a/sdk/extensions/exporter/source/NvBlastExtExporterFbxUtils.h +++ b/sdk/extensions/exporter/source/NvBlastExtExporterFbxUtils.h @@ -30,8 +30,7 @@ #define NVBLASTEXTEXPORTERFBXUTILS_H
#include "fbxsdk.h"
-#include "PxVec3.h"
-#include "PxVec2.h"
+#include <NvCTypes.h>
#include <string>
namespace Nv
@@ -47,8 +46,8 @@ class FbxUtils public:
static void VertexToFbx(const Nv::Blast::Vertex& vert, FbxVector4& outVertex, FbxVector4& outNormal, FbxVector2& outUV);
- static void PxVec3ToFbx(const physx::PxVec3& inVector, FbxVector4& outVector);
- static void PxVec2ToFbx(const physx::PxVec2& inVector, FbxVector2& outVector);
+ static void NvcVec3ToFbx(const NvcVec3& inVector, FbxVector4& outVector);
+ static void NvcVec2ToFbx(const NvcVec2& inVector, FbxVector2& outVector);
static FbxAxisSystem getBlastFBXAxisSystem();
static FbxSystemUnit getBlastFBXUnit();
|