(Vec point)
| 401 | } |
| 402 | |
| 403 | boolean contains(Vec point) |
| 404 | { |
| 405 | for(int i = 0; i < uB.length(); i++) |
| 406 | if(this.uB.get(i) < point.get(i) || this.lB.get(i) > point.get(i)) |
| 407 | return false; |
| 408 | return true; |
| 409 | } |
| 410 | |
| 411 | void adjustToContain(Vec point) |
| 412 | { |