GLOSSARY
Manifold Mesh
A manifold mesh is one where every edge is shared by exactly two faces, and every vertex has a single, well-defined surrounding neighborhood. It represents a real 3D solid — the kind of mesh a slicer can print.
Definition
Mathematically, a 2-manifold is a surface that locally looks like a flat plane around every point. Practically, for polygon meshes that means: every edge connects exactly two faces, every vertex has a fan of faces around it that forms a single disc, and faces never intersect each other.
A manifold mesh divides space into a clear inside and a clear outside. Pour water on it — water either flows over the surface or fills the inside, never both. That is what a slicer needs to decide where plastic should go.
Why it matters
Every 3D printing slicer assumes manifold input. A non-manifold mesh produces unpredictable output — missing layers, extra internal walls, or outright slicing failures. Tools like PrusaSlicer will warn you; some will attempt automatic repair.
AI 3D pipelines aimed at printing (including Automatic3D) guarantee manifold output. AI pipelines aimed at digital content often do not — game-engine meshes can have open edges, internal duplicate surfaces, and intersecting bodies because none of that matters for rendering.
Common confusion
Manifold and watertight are related but distinct. Watertight means the mesh has no holes; manifold means the local geometry is well-behaved. A mesh can be watertight and non-manifold (two cubes sharing one edge) or manifold but not watertight (a mesh with an open hole). Printable means both.