Преобразование USD в AMF через C#
Экспорт USD и других файлов 3D с помощью .NET Framework, .NET Core и Mono
Экспорт сцены USD как AMF с помощью C#
- Загрузите файл USD с помощью конструктора Сцена класс2. Звонок Сцена.Сохранить метод
- Передайте имя выходного файла с расширением .amf в качестве первого параметра.
- Укажите значение поля
AMF
из Формат файла класс
3D Преобразование формата API for .NET
Установите из командной строки как nuget install Aspose.3d
или через консоль диспетчера пакетов Visual Studio с Install-Package Aspose.3D
.
Кроме того, можно получить автономный установщик MSI или библиотеки DLL в файле ZIP из загрузки .
Код C# для преобразования USD в AMF
// загрузить USD в объект сцены
var scene = new Aspose.ThreeD.Scene("template.usd");
// сохранить USD как 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