Wandeln Sie USD über C# in DXF um
Exportieren Sie USD- und andere 3D-Dateien mit .NET Framework, .NET Core und Mono
Exportiere USD Szene als DXF mit C#
- Laden Sie die USD-Datei mit einem Konstruktor von Szene Klasse2. Anruf Szene.Speichern Methode
- Übergeben Sie den Namen der Ausgabedatei mit der Erweiterung .dxf als ersten Parameter
- Geben Sie den Feldwert
DXF
von an Datei Format Klasse
3D Formatkonvertierung API for .NET
Installieren Sie von der Befehlszeile als nuget install Aspose.3d
oder über die Package Manager Console von Visual Studio mit Install-Package Aspose.3D
.
Alternativ können Sie das Offline-MSI-Installationsprogramm oder DLLs in einer ZIP-Datei herunterladen Downloads .
C# Code für Umwandlung von USD in DXF
// Laden Sie die USD in ein Objekt der Szene
var scene = new Aspose.ThreeD.Scene("template.usd");
// speichere USD als 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