Creating a new leaf node @param points
(List<V> points)
| 146 | * @param points |
| 147 | */ |
| 148 | public RNode(List<V> points) |
| 149 | { |
| 150 | this.points = points; |
| 151 | children = new ArrayList<RNode<V>>(); |
| 152 | bound = Rectangle.contains(points); |
| 153 | } |
| 154 | |
| 155 | public RNode() |
| 156 | { |