| 157 | } |
| 158 | |
| 159 | private static class Node { |
| 160 | private Point2D p; |
| 161 | private RectHV rect; |
| 162 | private Node left, right; |
| 163 | |
| 164 | Node(Point2D p, RectHV rect) { |
| 165 | this.p = p; |
| 166 | this.rect = rect; |
| 167 | this.left = null; |
| 168 | this.right = null; |
| 169 | } |
| 170 | } |
| 171 | |
| 172 | |
| 173 | public static void main(String[] args) { |
nothing calls this directly
no outgoing calls
no test coverage detected