How can i merge the meshies?

In autodesk FBX SDK, FbxGeometryConverter has MergeMeshes method.

Is there the function that merge the meshies???

How can i merge the meshies??

@dooyeoung.ryu,
There is no way to merge meshes. We have logged a feature request under the ticket ID THREEDNET-305 in our bug tracking system. We have linked your post to this ticket and will keep you informed regarding any available updates.

@dooyeoung.ryu,

The linked ticket ID THREEDNET-305 has been resolved and its fix will be included in the next version 17.11 of Aspose.3D for .NET API. We will notify you once the next version 17.11 is published.

@dooyeoung.ryu,

The linked ticket ID THREEDNET-305 has been resolved, please download and try the latest version 17.11 of Aspose.3D for .NET API from NuGet gallery.

[C#]

Scene scene = new Scene("LAD-TOP.rvm");
Mesh mesh = PolygonModifier.MergeMesh(scene);
FileFormat.PLY.EncodeMesh(mesh, "LAD-TOP.ply");
1 Like