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

Method finalize_vertices

tools/MeshUtils/ObtuseTriangleRemoval.cpp:181–186  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

179}
180
181void ObtuseTriangleRemoval::finalize_vertices() {
182 if (m_new_vertices.empty()) return;
183
184 auto new_vertices = MatrixUtils::rowstack(m_new_vertices);
185 m_vertices = MatrixUtils::vstack<MatrixFr>({m_vertices, new_vertices});
186}
187
188void ObtuseTriangleRemoval::finalize_faces() {
189 if (m_new_faces.empty()) return;

Callers

nothing calls this directly

Calls 1

emptyMethod · 0.45

Tested by

no test coverage detected