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

Method getBoundaryNodeAdjacentBoundaryFaces

tools/Assembler/Mesh/TriangleMesh.cpp:146–151  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

144}
145
146VectorI TriangleMesh::getBoundaryNodeAdjacentBoundaryFaces(size_t bvi) const {
147 assert(bvi < getNbrBoundaryNodes());
148 size_t begin = m_boundary_node_edge_adj_idx[bvi];
149 size_t end = m_boundary_node_edge_adj_idx[bvi+1];
150 return m_boundary_node_edge_adj.segment(begin, end-begin);
151}
152
153VectorI TriangleMesh::getBoundaryNodeAdjacentBoundaryNodes(size_t bvi) const {
154 assert(bvi < getNbrBoundaryNodes());

Calls

no outgoing calls

Tested by

no test coverage detected