(self, width, height, depth)
| 1387 | Represents any node with a physical location. |
| 1388 | """ |
| 1389 | def __init__(self, width, height, depth): |
| 1390 | Node.__init__(self) |
| 1391 | self.width = width |
| 1392 | self.height = height |
| 1393 | self.depth = depth |
| 1394 | |
| 1395 | def shrink(self): |
| 1396 | Node.shrink(self) |
no outgoing calls
no test coverage detected