(self, length: float, width: float, yaw: float = 0.0)
| 22 | """ |
| 23 | |
| 24 | def __init__(self, length: float, width: float, yaw: float = 0.0) -> None: |
| 25 | super().__init__() |
| 26 | self._length: float = length |
| 27 | self._width: float = width |
| 28 | self._yaw: float = yaw |
| 29 | |
| 30 | @property |
| 31 | def length(self) -> float: |