C# aracılığıyla USD'i 3MF'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 3MF 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 .3mf uzantılı çıktı dosyası adını iletin
- Şuradan ‘Microsoft3MF’ 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 - 3MF Dönüşümü için C# Kodu
// USD öğesini bir Sahne nesnesine yükleyin
var scene = new Aspose.ThreeD.Scene("template.usd");
// USD'i 3MF olarak kaydet
scene.Save("output.3mf", Aspose.ThreeD.FileFormat.Microsoft3MF);
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 More3MF What is 3MF File Format?
3MF, 3D Manufacturing Format, is used by applications to render 3D object models to a variety of other applications, platforms, services and printers. It was built to avoid the limitations and issues in other 3D file formats, like STL, for working with the latest versions of 3D printers. 3MF is relatively a new file format that has been developed and published by the 3MF consortium. It is rich enough to fully describe a model, retaining internal information, colour, and other characteristics that makes it extensible for supporting new innovations in 3D printing. The format is extensible, able to be broadly adopted and free of issues besetting other widely used file formats.
Read More