A line with a directional arrow at the end, defined by start and end points.
| 53 | |
| 54 | @dataclass |
| 55 | class Arrow: |
| 56 | """A line with a directional arrow at the end, defined by start and end points.""" |
| 57 | |
| 58 | type: Literal["Arrow"] |
| 59 | |
| 60 | start_x: Annotated[int, Doc("Starting X-coordinate.")] |
| 61 | start_y: Annotated[int, Doc("Starting Y-coordinate.")] |
| 62 | end_x: Annotated[int, Doc("Ending X-coordinate.")] |
| 63 | end_y: Annotated[int, Doc("Ending Y-coordinate.")] |
| 64 | style: Annotated[Optional[Style], Doc("Optional style settings for the arrow.")] = None |
| 65 | head_size: Annotated[Optional[int], Doc("Size of the arrowhead, if present.")] = None |
| 66 | |
| 67 | |
| 68 | @dataclass |
no outgoing calls
no test coverage detected
searching dependent graphs…