Boats 2- 6

Each Boat is a New Function

  Boat2 
   plot(1, 1)
   plot(3, 1)
   plot(1, 2)
   plot(3, 2)
   plot(0, 3)
   plot(1, 3)
   plot(2, 3)
   plot(3, 3)
   plot(4, 3)
    

Code a Little Test a Little - so call boat #1 and boat #2 and evaluate the output. Do you need to and a wait time between calling each boat?

Boat3 
   
   plot(1, 2)
   plot(3, 2)
   plot(1, 3)
   plot(3, 3)
   plot(1, 4)
   plot(3, 4)
   

Consider - if we are programming a sinking boat - does that correlate to having fewer rows to plot LEDS? Why or Why not?

No the final boat - isn't really a boat at all - it is just the sad open ocean with no boat

Last updated