For more details, please visit Convert DAE File to OBJ 3D Object File using C#
Last active
December 23, 2021 06:02
-
-
Save aspose-com-gists/551c5e6922aeeca34f6e366ed330200a to your computer and use it in GitHub Desktop.
Convert DAE File to OBJ 3D Object File using C# | Digital Asset Exchange to Wvefron 3D OBJ Object File
This file contains 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 input DAE file using Scene class. | |
Scene scene = new Scene("Sample.dae"); | |
// Initialize an instance of ObjSaveOptions class | |
Aspose.ThreeD.Formats.ObjSaveOptions options = new Aspose.ThreeD.Formats.ObjSaveOptions(); | |
options.EnableMaterials = true; | |
// Convert DAE to OBJ File | |
scene.Save("Sample.obj", options); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment