This is an old revision of the document!
Brendan's crazyDog.js
function setup() { createCanvas(2800, 700 ); } class Dog { constructor (xposition, yposition, size,dColor, dPosition) { this.xposition = xposition; this.yposition = yposition; this.dogSize = size; this .dogColor = dColor; this.dogPosition = dPosition; } draw () { translate(this.positionX+50, this.yposition+50) stroke(255, 0, 0); fill(Math.random()*255,Math.random()*255,Math.random()*255); for(let i = 0; i<1; i++){ circle(this.xposition+90,90, 40);} fill(Math.random()*255,Math.random()*255,Math.random()*255); rect(this.xposition+100, 100,90, 60); fill(Math.random()*255,Math.random()*255,Math.random()*255); rect(this.xposition+100,160, 30, 30); fill(Math.random()*255,Math.random()*255,Math.random()*255); rect(this.xposition+160,160, 30, 30); fill(Math.random()*255,Math.random()*255,Math.random()*255); ellipse(this.xposition+190,90, 20, 50); fill(Math.random()*255,Math.random()*255,Math.random()*255); circle(this.xposition+83,80, 10); fill(Math.random()*255,Math.random()*255,Math.random()*255); circle(this.xposition+99,80, 10); } } class Background { constructor (xposition, size, bColor, bposition) { this.xposition = xposition; this.backgroundSize = size; this.backgroundColor = bColor; this.backgroundposition = bposition; } draw () { fill(color("beige")) fill(Math.random()*355,Math.random()*355,Math.random()*325); rect(this.xposition+30,20,250,250); fill(Math.random()*355,Math.random()*355,Math.random()*325); rect(this.xposition+40,30,230,230); } } function dogArray (n) { let outputArray = []; for (let i = 0; i < n ; i++) { outputArray.push(new Dog (20 + (i*300), 500 ,200, 1000, 1000)) } return outputArray } function backgroundArray (n) { let outputArray = []; for (let i = 0; i < n ; i++) { outputArray.push(new Background (20 + (i*300),100, 1000, 1000)) } return outputArray } function draw() { background(220); for(let i = 0; i < 10 ; i++){ let myDogs = dogArray(10); let myBackgrounds = backgroundArray(10); for(let i = 0; i < myBackgrounds.length ; i++){ myBackgrounds[i].draw() } for(let i = 0; i < myDogs.length ; i++){ myDogs[i].draw(); } } }