Update cheatsheets

This commit is contained in:
ivuorinen
2024-02-21 11:19:49 +00:00
parent 4e88a1b42f
commit 3d653cc7e6
4803 changed files with 127002 additions and 0 deletions

38
assimp Normal file
View File

@@ -0,0 +1,38 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# 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`