mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-06-05 12:45:59 +02:00
stl2gts: add page (#5969)
This commit is contained in:
parent
2df401d613
commit
a96dddd224
1 changed files with 24 additions and 0 deletions
24
pages/common/stl2gts.md
Normal file
24
pages/common/stl2gts.md
Normal file
|
@ -0,0 +1,24 @@
|
|||
# stl2gts
|
||||
|
||||
> Convert STL files into the GTS (GNU triangulated surface library) file format.
|
||||
> More information: <https://manned.org/stl2gts>.
|
||||
|
||||
- Convert an STL file to a GTS file:
|
||||
|
||||
`stl2gts < {{path/to/file.stl}} > {{path/to/file.gts}}`
|
||||
|
||||
- Convert an STL file to a GTS file and revert face normals:
|
||||
|
||||
`stl2gts --revert < {{path/to/file.stl}} > {{path/to/file.gts}}`
|
||||
|
||||
- Convert an STL file to a GTS file and do not merge vertices:
|
||||
|
||||
`stl2gts --nomerge < {{path/to/file.stl}} > {{path/to/file.gts}}`
|
||||
|
||||
- Convert an STL file to a GTS file and display surface statistics:
|
||||
|
||||
`stl2gts --verbose < {{path/to/file.stl}} > {{path/to/file.gts}}`
|
||||
|
||||
- Print help for `stl2gts`:
|
||||
|
||||
`stl2gts --help`
|
Loading…
Add table
Reference in a new issue