Skip to content

Instantly share code, notes, and snippets.

@aspose-com-gists
Last active January 18, 2021 21:22
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/fd09577c5be39e4f0e9fbb9bc4914c38 to your computer and use it in GitHub Desktop.
Save aspose-com-gists/fd09577c5be39e4f0e9fbb9bc4914c38 to your computer and use it in GitHub Desktop.
Convert FBX to Wavefront OBJ | Export FBX to PDF in C#
// Load the FBX file to be converted
Scene scene = new Scene(dataDir + "Test1.fbx");
// Save in wavefront OBJ file format
scene.Save(dir + "output.obj", FileFormat.WavefrontOBJ);
// Load the FBX file to be converted
Scene scene = new Scene(dataDir + "Test1.fbx");
// Save output in PDF file format
scene.Save(dir + "output.pdf", FileFormat.PDF);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment