You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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)]
The text was updated successfully, but these errors were encountered:
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)]
The text was updated successfully, but these errors were encountered: