(self)
| 1393 | self.depth = depth |
| 1394 | |
| 1395 | def shrink(self): |
| 1396 | Node.shrink(self) |
| 1397 | if self.size < NUM_SIZE_LEVELS: |
| 1398 | self.width *= SHRINK_FACTOR |
| 1399 | self.height *= SHRINK_FACTOR |
| 1400 | self.depth *= SHRINK_FACTOR |
| 1401 | |
| 1402 | def grow(self): |
| 1403 | Node.grow(self) |