Skip to content

Commit db88486

Browse files
committed
unit test fix
1 parent 1f036dd commit db88486

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

wrappers/csharp/LibPLATEAU.NET/CSharpPLATEAU.Test/MeshWriter/FbxWriterTest.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
using System.IO;
22
using Microsoft.VisualStudio.TestTools.UnitTesting;
3+
using PLATEAU.Geometries;
34
using PLATEAU.MeshWriter;
45
using PLATEAU.Test.CityGML;
56
using PLATEAU.Test.GeometryModel;
@@ -19,7 +20,7 @@ public void WriteGenerateFbxFile()
1920
string gmlPath = TestUtil.GetGmlPath(TestUtil.GmlFileCase.Simple);
2021
string fbxFileName = Path.GetFileNameWithoutExtension(gmlPath) + ".fbx";
2122
string fbxPath = Path.Combine(testDir, fbxFileName);
22-
var option = new FbxWriteOptions(FbxFileFormat.Binary);
23+
var option = new FbxWriteOptions(FbxFileFormat.Binary, CoordinateSystem.ENU);
2324

2425
bool isSucceed = FbxWriter.Write(fbxPath, model, option);
2526

0 commit comments

Comments
 (0)