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

Method remove_short_edges

tools/Wires/Misc/MeshCleaner.cpp:57–66  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

55}
56
57VectorI MeshCleaner::remove_short_edges(
58 MatrixFr& vertices, MatrixIr& faces, Float tol) {
59 ShortEdgeRemoval remover(vertices, faces);
60 remover.run(tol);
61
62 vertices = remover.get_vertices();
63 faces = remover.get_faces();
64
65 return remover.get_face_indices();
66}
67
68void MeshCleaner::remove_isolated_vertices(
69 MatrixFr& vertices, MatrixIr& faces) {

Callers 1

Calls 4

runMethod · 0.45
get_verticesMethod · 0.45
get_facesMethod · 0.45
get_face_indicesMethod · 0.45

Tested by

no test coverage detected