A box with only height (zero width).
| 1409 | pass |
| 1410 | |
| 1411 | class Vbox(Box): |
| 1412 | """ |
| 1413 | A box with only height (zero width). |
| 1414 | """ |
| 1415 | def __init__(self, height, depth): |
| 1416 | Box.__init__(self, 0., height, depth) |
| 1417 | |
| 1418 | class Hbox(Box): |
| 1419 | """ |