Skip to content

Instantly share code, notes, and snippets.

@conholdate-gists
Created June 13, 2024 08:23
Show Gist options
  • Save conholdate-gists/22f1680e67985e98a1f14ebf246338c3 to your computer and use it in GitHub Desktop.
Save conholdate-gists/22f1680e67985e98a1f14ebf246338c3 to your computer and use it in GitHub Desktop.
Convert FBX to STL in Java
// Load the input FBX file
com.aspose.threed.Scene document = new com.aspose.threed.Scene("test.fbx");
// Initiate StlSaveOptions class object
com.aspose.threed.StlSaveOptions options = new com.aspose.threed.StlSaveOptions();
// Convert FBX to STL file
document.save("test.stl", options);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment