@param v point to add @return true if this node needs to be split
(V v)
| 183 | * @return true if this node needs to be split |
| 184 | */ |
| 185 | boolean add(V v) |
| 186 | { |
| 187 | points.add(v); |
| 188 | if(bound == null) |
| 189 | bound = new Rectangle(v); |
| 190 | else |
| 191 | bound.adjustToContain(v); |
| 192 | return size() > M; |
| 193 | } |
| 194 | |
| 195 | /** |
| 196 | * |
no test coverage detected