-
Notifications
You must be signed in to change notification settings - Fork 3
added purepursuit class #6
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
base: main
Are you sure you want to change the base?
Conversation
| that will move the robot in a way that will minimize the error. | ||
| """ | ||
| def minimize(error: float): | ||
| raise NotImplementedError() No newline at end of file |
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.
what is our plan with these unimplemented methods?
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.
I assumed that there was an implementation in a different branch for this method.
| Calculates the euclidean distance between two points | ||
| """ | ||
|
|
||
| def calculate_distance(point1: Point, point2: Point): |
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.
could we use an already implemented point class and distance method?
|
Please only merge after the above comments have been addressed. |
Added general pure pursuit class