Represents the information on a composite element of a composite char.
| 285 | |
| 286 | |
| 287 | class CompositePart(NamedTuple): |
| 288 | """Represents the information on a composite element of a composite char.""" |
| 289 | |
| 290 | name: bytes |
| 291 | dx: float |
| 292 | dy: float |
| 293 | |
| 294 | |
| 295 | CompositePart.name.__doc__ = """Name of the part, e.g. 'acute'.""" |
no outgoing calls
no test coverage detected
searching dependent graphs…