1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-05 10:15:25 +02:00
tldr/pages/common/assimp.md
Managor 4b1e0196d1
common/*: reduce usage of "command-line" (part 3) (#16951)
Co-authored-by: Dylan <145150333+dmmqz@users.noreply.github.com>
Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
Co-authored-by: Wiktor Perskawiec <wiktor@perskawiec.cc>
2025-06-28 13:12:44 +00:00

831 B

assimp

Client for the Open Asset Import Library. Supports loading of 40+ 3D file formats, and exporting to several popular 3D formats. More information: https://assimp-docs.readthedocs.io/.

  • List all supported import formats:

assimp listext

  • List all supported export formats:

assimp listexport

  • Convert a file to one of the supported output formats, using the default parameters:

assimp export {{input_file.stl}} {{output_file.obj}}

  • Convert a file using custom parameters (the dox_cmd.h file in assimp's source code lists available parameters):

assimp export {{input_file.stl}} {{output_file.obj}} {{parameters}}

  • Display a summary of a 3D file's contents:

assimp info {{path/to/file}}

  • Display help:

assimp help

  • Display help for a specific subcommand:

assimp {{subcommand}} --help