Surface Mesh
A surface mesh is a 3D representation of an object's outer boundary using connected polygons. In Volvicon, surface meshes are typically generated from masks or volume data and are used for visualization, measurement, and export.

What is a Surface Mesh?
A surface mesh consists of:
| Component | Description |
|---|---|
| Vertices | Points in 3D space (X, Y, Z coordinates) |
| Edges | Lines connecting vertices |
| Faces | Polygons (usually triangles) formed by edges |
| Normals | Vectors perpendicular to faces, used for lighting |
Triangular meshes are most common because triangles are always planar and easy to render.
Creating Surface Meshes
Surface meshes can be created from:
| Source | Method |
|---|---|
| Masks | Marching cubes algorithm extracts the surface boundary |
| Volume images | Isosurface extraction at a specified intensity threshold |
| Imported files | STL, OBJ, PLY, and other mesh formats |
Mesh Quality
Mesh quality affects both visualization and downstream use:
| Factor | Description |
|---|---|
| Triangle count | Number of faces; higher = more detail but larger file |
| Smoothness | How well the mesh approximates curved surfaces |
| Manifold | A "watertight" mesh with no holes or self-intersections |
| Normal consistency | All face normals pointing outward |
Mesh Processing
Volvicon provides tools to improve mesh quality:
| Operation | Description |
|---|---|
| Smoothing | Reduce surface roughness while preserving shape |
| Decimation | Reduce triangle count while maintaining shape |
| Remeshing | Create uniform triangle sizes |
| Hole filling | Close gaps in the mesh |
| Boolean operations | Combine, subtract, or intersect meshes |
Common Uses
Surface meshes are used for:
- 3D printing – Export to STL for additive manufacturing
- CAD integration – Import into CAD software for design
- Simulation – Boundary conditions for FEA or CFD
- Visualization – High-quality 3D rendering
- Measurement – Surface area, volume, dimensions
File Formats
| Format | Description |
|---|---|
| STL | Simple format, widely supported, no color |
| OBJ | Supports materials and textures |
| PLY | Supports vertex colors |
| 3MF | Modern format with color and material support |
Surface Mesh vs Volume Mesh
| Surface Mesh | Volume Mesh |
|---|---|
| Represents only the outer boundary | Fills the interior with elements |
| Triangular faces | Tetrahedral or hexahedral elements |
| Used for visualization and 3D printing | Used for simulation (FEA, CFD) |
| Smaller file size | Larger file size |
Related Topics
- Masks – Source for surface mesh generation
- Volume Mesh – Interior mesh for simulation
- Rendering Types – Visualizing surface meshes