()
| 96 | } |
| 97 | |
| 98 | drag_move() { |
| 99 | this.current_vertices.push(d3.mouse(this.background.node())); |
| 100 | this.d3el |
| 101 | .select('#l' + this.lasso_counter) |
| 102 | .attr('d', this.line(this.current_vertices)); |
| 103 | } |
| 104 | |
| 105 | drag_end() { |
| 106 | const lasso_name = 'l' + this.lasso_counter; |