stl2gts
Convert STL files into the GTS (GNU triangulated surface library) file format.
TLDR
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]
Display help
$ stl2gts --help
SYNOPSIS
stl2gts [ OPTIONS ] < input.stl > output.gts
DESCRIPTION
This manual page documents briefly the stl2gts command.
OPTIONS
These programs follow the usual GNU command line syntax, with long options starting with two dashes (`-'). A summary of options is included below.
- -r, --revert
-
Revert face normals.
- -n, --nomerge
-
Do not merge vertices.
- -v, --verbose
-
Display surface statistics.
- -h, --help
-
Display the help and exit.
AUTHOR
stl2gts was written by Stephane Popinet <popinet@users.sourceforge.net>.
This manual page was written by Ruben Molina <rmolina@udea.edu.co>, for the Debian project (but may be used by others).