A box with only width (zero height and depth).
| 1173 | |
| 1174 | |
| 1175 | class Hbox(Box): |
| 1176 | """A box with only width (zero height and depth).""" |
| 1177 | |
| 1178 | def __init__(self, width: float): |
| 1179 | super().__init__(width, 0., 0.) |
| 1180 | |
| 1181 | |
| 1182 | class Char(Node): |