(a, b)
| 172 | }; |
| 173 | |
| 174 | function line(a, b) { |
| 175 | var dx = b[0] - a[0]; |
| 176 | var dy = b[1] - a[1]; |
| 177 | |
| 178 | return 'l' + dx + ',' + dy; |
| 179 | } |
| 180 | |
| 181 | function getBetween(a, b) { |
| 182 | return [ |
no outgoing calls
no test coverage detected
searching dependent graphs…