Aspose.3D for .NET 17.3.0 Release Notes
Other Improvements and Changes
Key | Summary | Category |
---|---|---|
THREEDNET-233 | Add support of importing Google Draco (.drc) files. | New feature |
Public API and Backwards Incompatible Changes
See the list of any changes made to the public API such as added, renamed, removed or deprecated members as well as any non-backward compatible change made to Aspose.3D for .NET. If you have concerns about any change listed, please raise it on the Aspose.3D support forum.
Adds Draco format entry in the Aspose.ThreeD.FileFormat Class
This release of Aspose.3D for .NET API has added support of importing Google Draco(.drc) files. Developers can import a Google Draco file, and then save it in any supported 3D format.
This code example demonstrates how to import a Google Draco file into Aspose.3D API:
.NET, C#
// Initialize a Scene class object
Scene scene = new Scene();
// load an existing 3D document
scene.Open("document.drc", FileFormat.Draco);