| 67 | } |
| 68 | |
| 69 | void gatherEdgeInfo( const MeshTopology& topology, EdgeId e, FaceBitSet& faces, VertBitSet& orgs, VertBitSet& dests ) |
| 70 | { |
| 71 | if ( auto l = topology.left( e ) ) |
| 72 | faces.set( l ); |
| 73 | if ( auto r = topology.right( e ) ) |
| 74 | faces.set( r ); |
| 75 | orgs.set( topology.org( e ) ); |
| 76 | dests.set( topology.dest( e ) ); |
| 77 | } |
| 78 | |
| 79 | } //anonymous namespace |
| 80 |