-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
AutoNav #175
base: master
Are you sure you want to change the base?
AutoNav #175
Conversation
reversed: bool | ||
|
||
def __init__(self, points, reversed) -> None: | ||
self.start, *self.waypoints, self.end = points |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since points
isn't a homogeneous list, would it be better to just pass in start
and end
separately? (At which point it'd be worth making this a dataclass.)
reversed: bool | ||
|
||
def __init__(self, points, reversed) -> None: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should reversed
have a default?
Co-authored-by: David Vo <[email protected]>
The AutoNav code has become the basis of our new auto routines, I think it should be reviewed separately so that expansions on it become more manageable.