| 8 | { |
| 9 | |
| 10 | void EnumNeihbourVertices::run( const MeshTopology & topology, VertId start, const VertPredicate & pred ) |
| 11 | { |
| 12 | assert( start.valid() ); |
| 13 | assert( bd_.empty() ); |
| 14 | bd_.push_back( start ); |
| 15 | visited_.resize( topology.vertSize() ); |
| 16 | |
| 17 | visited_.set( start ); |
| 18 | |
| 19 | run_( topology, pred ); |
| 20 | } |
| 21 | |
| 22 | void EnumNeihbourVertices::run( const MeshTopology& topology, const VertBitSet& start, const VertPredicate& pred ) |
| 23 | { |