تحويل 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 '' أو عبر Package Manager Console في 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