mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-23 13:42:07 +02:00

* pages*: use generic word for help * git: add newline to the end Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> * pages*: make help and version commands comply with the style guide * java: fix Java name --------- Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
33 lines
844 B
Markdown
33 lines
844 B
Markdown
# assimp
|
|
|
|
> Command-line 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`
|