(self)
| 1154 | self.depth = depth |
| 1155 | |
| 1156 | def shrink(self) -> None: |
| 1157 | super().shrink() |
| 1158 | if self.size < NUM_SIZE_LEVELS: |
| 1159 | self.width *= SHRINK_FACTOR |
| 1160 | self.height *= SHRINK_FACTOR |
| 1161 | self.depth *= SHRINK_FACTOR |
| 1162 | |
| 1163 | def render(self, output: Output, # type: ignore[override] |
| 1164 | x1: float, y1: float, x2: float, y2: float) -> None: |