| 50 | } |
| 51 | |
| 52 | VertScalars FlowAggregator::computeFlow( const std::vector<FlowOrigin> & starts, const OutputFlows & out ) const |
| 53 | { |
| 54 | return computeFlow( starts.size(), |
| 55 | [&starts]( size_t n ) { return starts[n].point; }, |
| 56 | [&starts]( size_t n ) { return starts[n].amount; }, |
| 57 | {}, out ); |
| 58 | } |
| 59 | |
| 60 | VertScalars FlowAggregator::computeFlow( const std::vector<MeshTriPoint> & starts, const OutputFlows & out ) const |
| 61 | { |
nothing calls this directly
no test coverage detected