Public API Changes in Aspose.3D 16.12.0

Contents Summary

Adds Aspose.ThreeD.Metered Class

A way to apply a metered license.

C#

 // initialize a metered license class object

Metered metered = new Metered();

// set public and private keys

metered.SetMeteredKey("your-public-key", "your-private-key");

//Your other code to use Aspose.3D

Importing DXF Files

Using the recent version (16.12.0) or higher, developers can import DXF files. The DXF format entry is added for loading purposes.

C#

 // an entry of DXF file in the FileFormat class

public static readonly Aspose.ThreeD.FileFormat DXF;

// load a DXF file

Scene dxfFile = new Scene("wuson.dxf");