additional save to check nanoply possible inconsistencies in load/save behavior

This commit is contained in:
Luigi Malomo 2021-11-17 18:21:21 +01:00
parent 22b9044222
commit 8bc75c8c4d
1 changed files with 2 additions and 0 deletions

View File

@ -149,5 +149,7 @@ int main()
MyMesh mesh2, mesh3;
Load("example_ascii.ply", mesh2);
Load("example_binary.ply", mesh3);
Save("example_ascii_1.ply", mesh2, false);
Save("example_binary_1.ply", mesh3, true);
return 0;
}