Challenge: Pendulum puppet
Make the puppet's limbs sway and connect to each other.

Show the limbs!

Hint

draw = function() {
;
};
mousePressed = function() {
;
};
mouseDragged = function() {
;
};
mouseReleased = function() {
;
};

In this challenge, you'll make a puppet out of pendulums. We've created all the limbs and stored them in a
variable, but we're only displaying and responding to mouse events for one of them right now. Make it so
we do that for all of the limbs instead.