| 102 | } |
| 103 | |
| 104 | bool AStarPathPlanner::IsGoal(const Point & point) |
| 105 | { |
| 106 | // BEGIN STUDENT CODE |
| 107 | return false; |
| 108 | // END STUDENT CODE |
| 109 | } |
| 110 | |
| 111 | bool AStarPathPlanner::IsPointInCollision(const Point & point) |
| 112 | { |
nothing calls this directly
no outgoing calls
no test coverage detected