Skip to content

Instantly share code, notes, and snippets.

@aspose-com-gists
Last active March 16, 2022 08:18
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/f238250d7bc51c802c96ab96b51d2e93 to your computer and use it in GitHub Desktop.
Save aspose-com-gists/f238250d7bc51c802c96ab96b51d2e93 to your computer and use it in GitHub Desktop.
Convert FBX to STL File Programmatically in C# .NET
// Load the input FBX file using the Scene class
Scene document = new Scene("test.fbx");
// Create an instance of STLSaveOptions class
STLSaveOptions options = new STLSaveOptions();
// Convert FBX to STL file
document.Save("test_output.stl", options);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment