// NODDING OFF IN CLASS: // exponential fading symbolizes drooping // head // awake = white // passed out = black paper 100 // BEGIN DROOPING repeat x 0 65 { paper (x*x/60) } // LOOP "DOZING" BLOCK OF CODE repeat z 1 3 { //CATCH YOURSELF DROOPING AND WAKE UP //SOMEWHAT repeat x 10 3 { paper (x*7) } //DROOPING ONCE AGAIN repeat x 20 85 { paper (x*x/70) } }