(svg, cls, paths)
| 715 | } |
| 716 | |
| 717 | function drawPaths(svg, cls, paths) { |
| 718 | var paths = svg.selectAll('path.' + cls).data(paths) |
| 719 | paths.enter() |
| 720 | .append('path') |
| 721 | .classed(cls, true) |
| 722 | paths.exit() |
| 723 | .remove(); |
| 724 | svg.selectAll('path.' + cls) |
| 725 | .attr('d', makeD3Path); |
| 726 | } |
| 727 | |
| 728 | function visualizeSlopes(svg, render) { |
| 729 | var h = render.h; |
no outgoing calls
no test coverage detected
searching dependent graphs…