MCPcopy Create free account
hub / github.com/PyMesh/PyMesh / remove_isolated_vertices

Method remove_isolated_vertices

tools/Wires/Misc/MeshCleaner.cpp:68–74  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

66}
67
68void MeshCleaner::remove_isolated_vertices(
69 MatrixFr& vertices, MatrixIr& faces) {
70 IsolatedVertexRemoval remover(vertices, faces);
71 remover.run();
72 vertices = remover.get_vertices();
73 faces = remover.get_faces();
74}
75
76void MeshCleaner::remove_obtuse_triangle(MatrixFr& vertices, MatrixIr& faces) {
77 ObtuseTriangleRemoval remover(vertices, faces);

Callers 2

triangulateFunction · 0.45

Calls 3

runMethod · 0.45
get_verticesMethod · 0.45
get_facesMethod · 0.45

Tested by

no test coverage detected