Browse our Products
Aspose.3D for .NET 17.10 - October 2017
This page contains release notes for Aspose.3D for .NET 17.10.
Other Improvements and Changes
Key | Summary | Category |
---|---|---|
THREEDNET-292 | Add support of importing 3MF | New feature |
THREEDNET-302 | OBJ to GLTF - incomplete rendering of 3D model | Bug |
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 Microsoft3MF member to Aspose.ThreeD.FileFormat and Aspose.ThreeD.FileFormatType classes
C#
/// <summary>
/// Microsoft 3D Manufacturing Format
/// </summary>
public static readonly Aspose.ThreeD.FileFormat Microsoft3MF;
/// <summary>
/// Microsoft 3D Manufacturing Format
/// </summary>
public static readonly Aspose.ThreeD.FileFormatType Microsoft3MF;
The auto format detection is supported for 3MF file, so developers can import it directly with Scene class constructor without explicitly specify the FileFormat.
C#
Scene scene = new Scene("sphere_logo.3mf");