Skip to content

Commit

Permalink
Merge pull request #2785 from JdeRobot/update-obst-avoidance
Browse files Browse the repository at this point in the history
Update obstacle_avoidance doc
  • Loading branch information
javizqh authored Oct 14, 2024
2 parents 544224b + ee702ee commit aa337b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion _pages/exercises/AutonomousCars/obstacle_avoidance.md
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ def absolute2relative (x_abs, y_abs, robotx, roboty, robott):
x_rel = dx * math.cos (-robott) - dy * math.sin (-robott)
y_rel = dx * math.sin (-robott) + dy * math.cos (-robott)

return x_rel and y_rel
return x_rel, y_rel
```


Expand Down

0 comments on commit aa337b8

Please sign in to comment.