Konwertuj USD na DXF przez C#

Eksportuj USD i inne 3D pliki za pomocą .NET Framework, .NET Core i Mono

Eksportuj USD scenę jako DXF z C#

  1. Załaduj plik USD za pomocą konstruktora Scena klasa2. Zadzwoń Scena.Zapisz metoda
  2. Przekaż nazwę pliku wyjściowego z rozszerzeniem .dxf jako pierwszy parametr
  3. Określ DXF wartość pola z Format pliku klasa

3D Konwersja formatu API for .NET

Zainstaluj z wiersza poleceń jako nuget install Aspose.3d lub za pomocą konsoli Menedżera pakietów programu Visual Studio za pomocą Install-Package Aspose.3D.

Alternatywnie, pobierz instalator MSI offline lub biblioteki DLL w pliku ZIP z pliki do pobrania .

C# Kod konwersji USD na DXF

// załaduj USD do obiektu sceny 
var scene = new Aspose.ThreeD.Scene("template.usd");
// zapisz USD jako DXF 
scene.Save("output.dxf", Aspose.ThreeD.FileFormat.DXF);

Other Conversion Options

USD TO PLY (Polygon File Format)
USD TO AMF (Additive Manufacturing File)
USD TO ASE (Adobe Swatch Exchange File)
USD TO HTML (Hyper Text Markup Language)
USD TO GLTF (GL Transmission Format File)
USD TO FBX (Autodesk FBX Interchange File)
USD TO DAE (Digital Asset Exchange File)
USD TO 3DS (3D Studio Scene)

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 More

DXF 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