A box with only width (zero height and depth).
| 1416 | Box.__init__(self, 0., height, depth) |
| 1417 | |
| 1418 | class Hbox(Box): |
| 1419 | """ |
| 1420 | A box with only width (zero height and depth). |
| 1421 | """ |
| 1422 | def __init__(self, width): |
| 1423 | Box.__init__(self, width, 0., 0.) |
| 1424 | |
| 1425 | class Char(Node): |
| 1426 | """ |