Robot Maze 3

Your goal is to program the kite-shaped robot to navigate the maze from start to finish using transformation commands. The robot cannot pass through any of the red walls.

Create a set of commands to move the robot from the starting position to the ending position. Each command must be entered on a separate line and must be concluded with a semicolon. The commands you may use are: [b]translate [/b](amount right, amount up); [b]rotate [/b](degrees counterclockwise, point of rotation) [b]reflect [/b](line of reflection) EXAMPLE: translate (0, -4); [i]This would move the robot down four units on the grid[/i] rotate (90, (1.5, 5)); [i]This would rotate the robot 90 degrees counterclockwise around the point (1.5, 5)[/i] reflect (y=3); [i]This would reflect the robot over the line y=3[/i]