Find non-manifold edges in an STL
A non-manifold edge is shared by more than two triangles in this checker. That creates a junction where a surface no longer has the ordinary two-face neighborhood. The problem may come from overlapping faces, joined shells, or geometry that was never intended to describe one solid.
Reproduce a three-face junction
The supplied duplicate-face sample starts with a closed tetrahedron and adds one copy of a face. Its three edges now each belong to three triangles. The checker reports three non-manifold edges. Select that finding to mark their locations on the model.
| Sample | Triangles | Non-manifold edges |
|---|---|---|
| Original tetrahedron | 4 | 0 |
| One duplicated face | 5 | 3 |
An edge count identifies a specific topology problem. It cannot decide whether one face should be removed, whether several bodies should stay separate, or whether an intersection needs a different construction.
Inspect the surrounding surfaces
- Open the sample or your STL in the mesh checker.
- Select Non-manifold edges and inspect the marked junction from several views.
- Compare that region with the intended source geometry.
- Make the necessary modeling decision in the source application, then check the exported mesh again.
Reversing triangles cannot decide which branch of a three-face junction belongs to the intended surface. Removing small components or merging near vertices would also be a geometric decision. This checker locates the problem without making those changes.
A zero count has a limited meaning
This check matches stored positions exactly; it does not weld nearby vertices. It counts edge incidence, not every possible kind of non-manifold condition. It also does not test self-intersection, wall thickness, or manufacturing suitability. Two closed shells may pass the edge checks while intersecting each other. Keep the report's unchecked properties separate from the findings it actually measured.
Try these files
These samples were created by this project and released under CC0. They contain no visitor files. Sizes and SHA-256 hashes identify the exact bytes measured in this experiment.
- Ten-millimetre tetrahedron; STL itself stores no unit. (STL, 284 bytes)
SHA-256
7d98ff53aa7c0ac15350e51fc0adf77ebd39df597cac09f07269e1ff3fff9aa4 - One missing tetrahedron face leaves exactly three boundary edges. (STL, 234 bytes)
SHA-256
80dec549caa7fc39c22ab0806b4e40b46835a694d5056827947ef24172a33e96 - A duplicate face gives three edges a third incident triangle. (STL, 334 bytes)
SHA-256
481a849fbc081d6da134833dbe5b2c3dcb3cc37ad60d47a451855e9565e96a8a
See the measurement method, exact files, and reproduction details