(self, width: float, height: float, depth: float)
| 1148 | """A node with a physical location.""" |
| 1149 | |
| 1150 | def __init__(self, width: float, height: float, depth: float) -> None: |
| 1151 | super().__init__() |
| 1152 | self.width = width |
| 1153 | self.height = height |
| 1154 | self.depth = depth |
| 1155 | |
| 1156 | def shrink(self) -> None: |
| 1157 | super().shrink() |
no outgoing calls
no test coverage detected