C# aracılığıyla USD'i AMF'ye dönüştürün
.NET Framework, .NET Core ve Mono kullanarak USD ve diğer 3D dosyalarını dışa aktarın
C# ile USD Sahneyi AMF olarak dışa aktar
- Bir oluşturucu kullanarak USD dosyasını yükleyin Sahne sınıf2. Çağrı Sahne.Kaydet yöntem
- İlk parametre olarak .amf uzantılı çıktı dosyası adını iletin
- Şuradan
AMF
alan değerini belirtin: Dosya formatı sınıf
3D Biçim Dönüştürme API for .NET
Komut satırından nuget install Aspose.3d
veya ```Install-Package Aspose.3D`` ile Visual Studio’nun Paket Yönetici Konsolu aracılığıyla yükleyin.
Alternatif olarak, çevrimdışı MSI yükleyicisini veya DLL’leri şu adresten bir ZIP dosyasında alın: İndirilenler .
USD - AMF Dönüşümü için C# Kodu
// USD öğesini bir Sahne nesnesine yükleyin
var scene = new Aspose.ThreeD.Scene("template.usd");
// USD'i AMF olarak kaydet
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