(Box x, Vec2 position)
| 31 | } |
| 32 | |
| 33 | private boolean intersectsWith(Box x, Vec2 position) { |
| 34 | Rect f = x.properties.get(Box.frame); |
| 35 | if (f == null) return false; |
| 36 | return f.intersects(position.get()); |
| 37 | } |
| 38 | |
| 39 | private Box selection(Box root) { |
| 40 | return root.breadthFirst(root.both()) |
nothing calls this directly
no test coverage detected