1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 06:02:08 +02:00
tldr/pages/common/meshlabserver.md
pixel 263508cd44
*: replace file(s) syntax and add path/to/ to more things (#9592)
* Fix file(s) and more path/to

* Update pages.it/common/rm.md

Co-authored-by: Emily Grace Seville <EmilySeville7cfg@gmail.com>

* thanks emily your suggestion was dogshit

https://github.com/tldr-pages/tldr/blob/main/contributing-guides/translation-templates/common-arguments.md

Co-authored-by: Emily Grace Seville <EmilySeville7cfg@gmail.com>
2022-12-06 16:47:56 +10:00

24 lines
884 B
Markdown

# meshlabserver
> Command-line interface for the MeshLab 3D mesh processing software.
> More information: <https://manned.org/meshlabserver>.
- Convert an STL file to an OBJ file:
`meshlabserver -i {{input.stl}} -o {{output.obj}}`
- Convert a WRL file to a OFF file, including the vertex and face normals in the output mesh:
`meshlabserver -i {{input.wrl}} -o {{output.off}} -om vn fn`
- Dump a list of all the available processing filters into a file:
`meshlabserver -d {{path/to/file}}`
- Process a 3D file using a filter script created in the MeshLab GUI (Filters > Show current filter script > Save Script):
`meshlabserver -i {{input.ply}} -o {{output.ply}} -s {{filter_script.mlx}}`
- Process a 3D file using a filter script, writing the output of the filters into a log file:
`meshlabserver -i {{input.x3d}} -o {{output.x3d}} -s {{filter_script.mlx}} -l {{logfile}}`