| 488 | } |
| 489 | |
| 490 | UndirectedEdgeBitSet getInnerEdges( const MeshTopology & topology, const VertBitSet& verts ) |
| 491 | { |
| 492 | MR_TIMER; |
| 493 | UndirectedEdgeBitSet res( topology.undirectedEdgeSize() ); |
| 494 | for ( auto v : verts ) |
| 495 | { |
| 496 | for ( auto e : orgRing( topology, v ) ) |
| 497 | { |
| 498 | if ( verts.test( topology.dest( e ) ) ) |
| 499 | res.set( e.undirected() ); |
| 500 | } |
| 501 | } |
| 502 | return res; |
| 503 | } |
| 504 | |
| 505 | UndirectedEdgeBitSet getInnerEdges( const MeshTopology & topology, const FaceBitSet& region ) |
| 506 | { |
no test coverage detected