Chuyển đổi USD sang AMF qua C#
Xuất các tệp USD và 3D khác bằng cách sử dụng .NET Framework, .NET Core và Mono
Xuất USD Cảnh dưới dạng AMF với C#
- Tải tệp USD bằng cách sử dụng hàm tạo của Bối cảnh lớp2. Gọi Scene.Save phương pháp
- Chuyển tên tệp đầu ra có phần mở rộng .amf làm tham số đầu tiên
- Chỉ định giá trị trường
AMF
từ FileFormat lớp
3D Chuyển đổi Định dạng API for .NET
Cài đặt từ dòng lệnh dưới dạng nuget install Aspose.3d '' 'hoặc qua Bảng điều khiển Trình quản lý Gói của Visual Studio với
Gói cài đặt Aspose.3D’ ‘.
Ngoài ra, tải trình cài đặt MSI ngoại tuyến hoặc DLL trong tệp ZIP từ tải xuống .
C# Mã cho Chuyển đổi USD sang AMF
// tải USD trong một đối tượng của Scene
var scene = new Aspose.ThreeD.Scene("template.usd");
// lưu USD dưới dạng AMF
scene.Save("output.amf", Aspose.ThreeD.FileFormat.AMF);
Other Conversion Options
USD What is USD File Format?
A file with .usd extension is a Universal Scene Description file format that encodes data for the purpose of data interchanging and augmenting between digital content creation applications. Developed by Pixar, USD provides the ability to interchange elemental assets (such as models) or animation.
Read MoreAMF What is AMF File Format?
An AMF file consists of guidelines for objects description in order to be used by Additive Manufacturing processes. It contains an opening XML tag and ends with a element. This is preceded by an XML declaration line specifying the XML version and encoding of the file. The declarations can include measurement units information and, in the absence of such information, millimetres are used as default unit.
Read More