Skip to content

Instantly share code, notes, and snippets.

@aspose-com-gists
Last active December 23, 2021 06:02
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/551c5e6922aeeca34f6e366ed330200a to your computer and use it in GitHub Desktop.
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
// 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