-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathassimp
33 lines (18 loc) · 877 Bytes
/
assimp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# 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: <http://www.assimp.org/>.
- 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}}
- List all supported subcommands ("verbs"):
assimp help
- Get help on a specific subcommand (e.g. the parameters specific to it):
assimp {{subcommand}} --help