Chuyển đổi USD sang DXF 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 DXF 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 .dxf làm tham số đầu tiên
- Chỉ định giá trị trường
DXF
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 DXF
// 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 DXF
scene.Save("output.dxf", Aspose.ThreeD.FileFormat.DXF);
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 MoreDXF What is DXF File Format?
DXF, Drawing Interchange Format, or Drawing Exchange Format, is a tagged data representation of AutoCAD drawing file. Each element in the file has a prefix integer number called a group code. This group code actually represents the element that follows and indicates the meaning of a data element for a given object type. DXF makes it possible to represent almost all user-specified information in a drawing file.
Read More