Skip to content

Instantly share code, notes, and snippets.

@farhan-raza
Created December 18, 2020 21:53
Show Gist options
  • Select an option

  • Save farhan-raza/6121471781929ad078e9004d1f16c808 to your computer and use it in GitHub Desktop.

Select an option

Save farhan-raza/6121471781929ad078e9004d1f16c808 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