Kamu API Aspose içinde değişir. 3D 16.12.0
Contents
[
Hide
]
Contents Summary
This document describes changes to the Aspose.3D API from version 16.11.0 to 16.12.0, that may be of interest to module/application developers. It includes not only new and updated public methods, but also a description of any changes in the behavior behind the scenes in Aspose.3D.
Adds Aspose.ThreeD.Metered Class
Ölçülü bir lisans uygulamak için A way.
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
DXF dosyalarını içe aktarma
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");