(gBrush)
| 985 | } |
| 986 | |
| 987 | createBrushHandlePaths (gBrush) { |
| 988 | let brushHandles = gBrush.selectAll(`path.${CUSTOM_BRUSH_HANDLE_CLASS}`).data([{type: 'w'}, {type: 'e'}]); |
| 989 | |
| 990 | brushHandles = brushHandles |
| 991 | .enter() |
| 992 | .append('path') |
| 993 | .attr('class', CUSTOM_BRUSH_HANDLE_CLASS) |
| 994 | .merge(brushHandles); |
| 995 | |
| 996 | brushHandles |
| 997 | .attr('d', d => this.resizeHandlePath(d)); |
| 998 | } |
| 999 | |
| 1000 | extendBrush (brushSelection) { |
| 1001 | if (brushSelection && this.round()) { |
no test coverage detected