Aspose.3D for .NET 17.10 - October 2017

Other Improvements and Changes

KeySummaryCategory
THREEDNET-292Add support of importing 3MFNew feature
THREEDNET-302OBJ to GLTF - incomplete rendering of 3D modelBug

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");