Recitation Documentation: Arrays

This week’s recitation is a bit challenging, we’re playing with arrays—huge numbers of items instead of one. This is the function I created: void deathlyHollows(float x,float y, color c) { //stroke(253,254,138); stroke(c); strokeWeight(3); fill(0); triangle(x, y-size, x+sqrt(3)*size/2, y+size/2, x-sqrt(3)*size/2, y+size/2);…