Convertir USD a DXF a través de C#
Exporte USD y otros 3D archivos usando .NET Framework, .NET Core y Mono
Exportar USD escena como DXF con C#
- Cargue el archivo USD usando un constructor de Escena clase2. Llamar Escena.Guardar método
- Pase el nombre del archivo de salida con la extensión .dxf como primer parámetro
- Especifique el valor del campo
DXF
de Formato de archivo clase
3D Conversión de formato API for .NET
Instale desde la línea de comandos como nuget install Aspose.3d
o a través de la consola del administrador de paquetes de Visual Studio con Install-Package Aspose.3D
.
Como alternativa, obtenga el instalador MSI sin conexión o las DLL en un archivo ZIP de descargas .
C# Código para USD a DXF Conversión
// carga el USD en un objeto de Escena
var scene = new Aspose.ThreeD.Scene("template.usd");
// guardar USD como 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