Převést USD na AMF prostřednictvím C#
Exportujte USD a další soubory 3D pomocí .NET Framework, .NET Core a Mono
Exportovat scénu USD jako AMF pomocí C#
- Načtěte soubor USD pomocí konstruktoru z Scéna třída2. Zavolejte Scene.Save metoda
- Jako první parametr předejte název výstupního souboru s příponou .amf
- Zadejte hodnotu pole „AMF“ od Formát souboru třída
3D Převod formátu API for .NET
Instalujte z příkazového řádku jako nuget install Aspose.3d
nebo prostřednictvím konzoly Správce balíčků sady Visual Studio s Install-Package Aspose.3D
.
Případně můžete získat offline instalační program MSI nebo knihovny DLL v souboru ZIP stahování .
C# Kód pro konverzi USD na AMF
// načtěte USD do objektu scény
var scene = new Aspose.ThreeD.Scene("template.usd");
// uložit USD jako 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