Skip to content

Instantly share code, notes, and snippets.

@aspose-com-gists
Last active March 29, 2022 21:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aspose-com-gists/5ec21fcce75bb0b86e6cbbb22794757e to your computer and use it in GitHub Desktop.
Save aspose-com-gists/5ec21fcce75bb0b86e6cbbb22794757e to your computer and use it in GitHub Desktop.
Convert USDZ to STL Programmatically in Java
// Load the input USDZ file
Scene scene = new Scene();
scene.open("Test.usdz");
// Create an instance of STLSaveOptions class
StlSaveOptions options = new StlSaveOptions();
// Convert USDZ to STL file
scene.save("output.stl", options);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment