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

Method getBoundaryNodeAdjacentBoundaryNodes

tools/Assembler/Mesh/TriangleMesh.cpp:153–158  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

151}
152
153VectorI TriangleMesh::getBoundaryNodeAdjacentBoundaryNodes(size_t bvi) const {
154 assert(bvi < getNbrBoundaryNodes());
155 size_t begin = m_boundary_node_adj_idx[bvi];
156 size_t end = m_boundary_node_adj_idx[bvi+1];
157 return m_boundary_node_adj.segment(begin, end-begin);
158}
159
160void TriangleMesh::verify_triangle_mesh() {
161 const size_t vertex_per_face = m_mesh->get_vertex_per_face();

Calls

no outgoing calls

Tested by

no test coverage detected