(a, b)
| 451 | } |
| 452 | |
| 453 | function compareBBoxes(a, b) { |
| 454 | return ['x', 'y', 'width', 'height'].map( |
| 455 | function(k) { return coordsEq(a[k], b[k]); }).reduce( |
| 456 | function(l, r) { return l && r; }, |
| 457 | true); |
| 458 | } |
| 459 | |
| 460 | function findAROByColor(color, id, type, colorAttribute) { |
| 461 | id = (id === undefined) ? '' : id + ' '; |
no test coverage detected
searching dependent graphs…