Panda Function
Making any kind of complex sketch is going to take planning. It is not uncommon for programmers to plan out the screen layout before beginning.
49.1
Add 2 more Pandas.
49.2
Replace the 2 makePanda calls in void setup() with:
for(int y = 50; y <= 480; y += 80){
makePanda(100, y);
}
Challenge 49
Make a function that draws your own unique animal.