TRIMMESH Reduce memory footprint of a polygonal mesh.
[V2, F2] = trimMesh(V, F)
Unreferenced vertices are removed.
Following functions are implemented only for numeric faces:
Duplicate vertices are removed.
Duplicate faces are removed.
Example
[V, F] = createIcosahedron;
F(13:20, :) = [];
[V2, F2] = trimMesh(V, F);
figure; drawMesh(V2, F2)
view(3); axis equal;
axis([-1 1 -1 1 0 2])
See also
meshes3d, clipMeshVertices
Package: matgeom