(y)
| 71 | var isLeftOfRect = function(x) { return x - e <= ref.x0; }; |
| 72 | var isRightOfRect = function(x) { return x + e >= ref.x1; }; |
| 73 | var isBottomOfRect = function(y) { return y - e <= ref.y0; }; |
| 74 | var isTopOfRect = function(y) { return y + e >= ref.y1; }; |
| 75 | |
| 76 | if(pt.x0 === ref.x0 && pt.x1 === ref.x1 && pt.y0 === ref.y0 && pt.y1 === ref.y1) { |
no outgoing calls
no test coverage detected
searching dependent graphs…