Chuyển đổi USD sang DAE 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 DAE 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 .dae làm tham số đầu tiên
- Chỉ định giá trị trường
Collada
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 DAE
// 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 DAE
scene.Save("output.dae", Aspose.ThreeD.FileFormat.Collada);
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 MoreDAE What is DAE File Format?
A DAE file is a Digital Asset Exchange file format that is used for exchanging data between interactive 3D applications. This file format is based on the COLLADA (COLLAborative Design Activity) XML schema which is an open standard XML schema for the exchange of digital assets among graphics software applications. It has been adopted by ISO as a publicly available specification, ISO/pAS 17506. DAE files can be opened in applications such as Adobe Photoshop, AutoDesk Maya, AutoDesk AutoCAD, and APIs such as Aspose.CAD.
Read More