Skip to content
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

Chapter 19: Typo in explanatory code #823

Closed
xU77654x opened this issue May 21, 2023 · 1 comment
Closed

Chapter 19: Typo in explanatory code #823

xU77654x opened this issue May 21, 2023 · 1 comment
Labels
content Issues with the lessons, practices, including their code examples

Comments

@xU77654x
Copy link

In Chapter 19, there is an incorrect piece of code defining the path to the robot when the turtle has to walk to the robot while avoiding some rocks. This should be an easy fix.

The code is currently listed as:
var path_to_robot = [Vector2(1,0), Vector2(2,0), Vector2(1), Vector2(2, 2), Vector2(3, 2), Vector2(4, 2), Vector2(5, 2)]

The code should instead be:
var path_to_robot = [Vector2(1,0), Vector2(2,0), Vector2(2, 1), Vector2(2, 2), Vector2(3, 2), Vector2(4, 2), Vector2(5, 2)]

@xU77654x xU77654x added the content Issues with the lessons, practices, including their code examples label May 21, 2023
@NathanLovato
Copy link
Contributor

In the latest version of the app, the code is correct. perhaps what you're experiencing is #99, which we cannot fix unfortunately

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
content Issues with the lessons, practices, including their code examples
Projects
None yet
Development

No branches or pull requests

2 participants