تحويل USD إلى DXF عبر C#
تصدير USD وملفات 3D أخرى باستخدام .NET Framework و .NET Core و Mono
تصدير USD المشهد كـ DXF بـ C#
- تحميل ملف USD باستخدام مُنشئ لـ مشهد صف دراسي2. الاتصال المشهد طريقة
- قم بتمرير اسم ملف الإخراج بامتداد .dxf كمعامل أول
- حدد قيمة الحقل “DXF” من تنسيق الملف صف دراسي
3D تنسيق التحويل API for .NET
قم بالتثبيت من سطر الأوامر كـ nuget install Aspose.3d '' أو عبر Package Manager Console في Visual Studio مع
Install-Package Aspose.3D ‘’.
بدلاً من ذلك ، احصل على مثبّت MSI غير المتصل أو مكتبات DLL في ملف ZIP من التحميلات .
C# رمز التحويل من USD إلى DXF
// تحميل USD في كائن من المشهد
var scene = new Aspose.ThreeD.Scene("template.usd");
// حفظ USD باسم 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