Class Work
Topic 6-1: Functions
The purpose of this exercise is to create and use a function
Create a scene with a rabbit and a series of obstacles in front of the rabbit. You can create your own scene or use the one provided. Click here to download the initial Alice world.

In the given world there are four obstacles, a volleyball net, a tennis net, a table, and a door. The table and door are off screen to the right.
Have the rabbit move forward to a short distance in front of each obstacle. (After the rabbit clears the first two obstacles you will have to reposition the camera to see him jump over the other two.) Then have the rabbit jump over the obstacle. Each jump should NOT take the same amount of time. Use function to calculate the distance forward and up the rabbit must move. Create a function that determines the time it should take the rabbit to move based on these distances.
Try not to repeat code or "hard code" times into the program. The duration for each movement should be based on the distance being traveled and determined by a function your write.