I use Ubuntu 12.10. What software can I install that can open Physible .stl files? And what are the differences between these softwares?
8 Answers
Meshlab reads all kind of 3D meshes, also STL
sudo apt-get install meshlab
meshlab file.stl
Example with this file:
- 26,663
- 14
- 108
- 107
- 1,535
- 1
- 12
- 8
-
1Just a warning: meshlab is terrible for doing any per vertex or per surface rendering. I.e. you can't easily select faces and move them around. – Catskul Jun 04 '14 at 22:51
From OpenSCAD's online User Manual
STL Import - http://en.wikibooks.org/wiki/OpenSCAD_User_Manual/STL_Import
import_stl("filename.stl", convexity = <val>)
As of version 2019.01, if you do from the command line:
openscad file.stdl
it automatically opens the GUI with the right command to view the file e.g.:
import("/home/ciro/git/OSP/Hardware/CAD Files/P1 - X-Axis Motor Holder/P1 - X-Axis Motor Holder.STL");
Then you can click Design > Render, and it gives for this sample file:
- 26,663
- 14
- 108
- 107
- 365
- 2
- 4
-
That doesn't seem to work very well. And technically, that doesn't let you edit the STL file. It just converts the STL file to OpenSCAD's internal format using raytracing, which takes forever. – Cerin Dec 25 '14 at 02:57
You could try OpenSCAD. It is free and is available for Ubuntu.
- 141
- 5
-
2
-
That's strange. The site says it opens and create stl files. Are you sure you're file is not damaged in some way? – Rodrigo Guedes Jan 25 '13 at 12:36
-
-
Very odd, my friend. I will make some research and return if I find a solution. – Rodrigo Guedes Jan 25 '13 at 12:47
-
2
-
It might be a newer feature. The current version is 2014.03, but the version in the repo is 2013.02.28. – Cerin Dec 25 '14 at 02:48
-
I think it is only meant to export to STL files, it is not a mesh viewer. At least, that is what my 5 minutes of tinkering with an scad file from thingiverse taught me. I used meshlab to view STL files exported from scad. – NeilenMarais Aug 13 '16 at 20:50
-
1you can import STL files using the `import` function: `import("file.stl", convexity=3);`. You will then be able to see the model in the preview window. – s-ol Sep 22 '19 at 12:26
Since OpenSCAD version 2015.03-1, it should work also to import .stl files. Please use a command like this:
import("/home/documents/Screw.stl", convexity=3);
and push the preview button, as suggested by Hall above.
This should work!
To edit the .stl as an object in OpenSCAD, create a module like:
module Screw(){
import("/home/documents/Screw.stl", convexity=3);
}
Now you are able to recall it with Screw() for further actions.
- 116,445
- 54
- 318
- 493
- 11
- 4
I use ChiTuBox on Ubuntu 18.04 (I know you were asking about 12.04 but that was 6 years ago!).
- 334
- 1
- 4
- 16

