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

Method init_boundary_loops

tools/MeshUtils/MeshChecker.cpp:292–300  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

290}
291
292void MeshChecker::init_boundary_loops() {
293 m_complex_bd = false;
294 try {
295 m_boundary_loops = EdgeUtils::chain_edges(m_boundary_edges);
296 } catch (RuntimeError& e) {
297 m_complex_bd = true;
298 std::cerr << "Warning: " << e.what() << std::endl;
299 }
300}
301
302void MeshChecker::init_edge_face_adjacency() {
303 m_edge_face_adjacency = EdgeUtils::compute_edge_face_adjacency(m_faces);

Callers

nothing calls this directly

Calls 2

chain_edgesFunction · 0.85
whatMethod · 0.45

Tested by

no test coverage detected