Convert USD to 3MF via Python

Export USD & other 3D files using .NET Framework, .NET Core and Mono

Export USD Scene as 3MF with C#

  1. Load USD file using a from_file of Scene class
  2. Call Scene.save method
  3. Pass output file name with .3mf extension as first parameter
  4. Specify Microsoft3MF field value from FileFormat class

3D Format Conversion API for Python via .NET

Install from command line as pip install aspose-3d .

Alternatively, get the offline MSI installer or DLLs in a ZIP file from downloads .

C# Code for USD to 3MF Conversion

# load the USD in an object of Scene 
scene = aspose.threed.Scene.from_file("template.usd");
# save USD as a 3MF 
scene.save("output.3mf", aspose.threed.FileFormat.Microsoft3MF);

Other Conversion Options

USD TO DAE (Digital Asset Exchange File)
USD TO STL (Stereolithography File)
USD TO JT (JT Open CAD File)
USD TO GLTF (GL Transmission Format File)
USD TO RVM (AVEVA RVM)
USD TO DXF (Autodesk Drawing Exchange Format)
USD TO PDF (Portable Document Format)
USD TO ASE (Adobe Swatch Exchange File)

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

3MF 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