Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

STL file to a readable text file

Tags:

3d

stl-format

I am now studying 3d models (stl files and etc) and how it is made from scratch. What software do I need to use to see what's inside the stl file like this:

solid dart
    facet normal 0.00000E+000 0.00000E+000 -1.00000E+000
        outer loop
            vertex 3.10000E+001 4.15500E+001 1.00000E+000
            vertex 3.10000E+001 1.00000E+001 1.00000E+000
            vertex 1.00000E+000 2.50000E-001 1.00000E+000
        endloop
    endfacet
endsolid dart

I have been searching for those kinds of software but so far, no luck.

like image 824
TerribleDog Avatar asked Dec 04 '18 07:12

TerribleDog


People also ask

Are STL files text files?

The ASCII representation of the STL (STereoLithography) file format is a simple, openly documented, plain-text format for describing the surface of an object as a triangular mesh. Since its introduction in the late 1980s, STL has become a de facto standard for rapid prototyping and 3D printing.


Video Answer


1 Answers

MeshLab (http://www.meshlab.net) is a widely used open source viewer for 3D models that handles well all the STL variants (and many other 3D files). Available for mac/win/linux

There is also an online version that runs in your browser http://www.meshlabjs.net

like image 136
ALoopingIcon Avatar answered Sep 22 '22 06:09

ALoopingIcon