Created
December 18, 2020 21:53
-
-
Save farhan-raza/6121471781929ad078e9004d1f16c808 to your computer and use it in GitHub Desktop.
Convert FBX to Wavefront OBJ | Export FBX to PDF in C#
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 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); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 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