Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
zoey-lin-generative [2021/06/20 18:16] – zoey.lin | zoey-lin-generative [2021/06/29 01:48] (current) – renick | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | =====Zoey' | + | =====Zoey |
+ | made by [[Zoey-Lin|zoey]] | ||
< | < | ||
- | <iframe src=" | + | <iframe src=" |
</ | </ | ||
+ | ===== about my crazyDog.js ===== | ||
+ | This is my crazyDog.js. I've been working on it all semester. The hardest thing was to learn how to animate the dogs. I'm proud of it because I have never coded anything before so I feel like I accomplished a lot from doing this. The code for my artwork is below. | ||
+ | |||
+ | The animation code is released under the [[https:// | ||
+ | |||
+ | ===== the code for my crazyDog.js ===== | ||
+ | |||
+ | < | ||
+ | let circleY = 10; | ||
+ | |||
+ | function setup() { | ||
+ | createCanvas(1800, | ||
+ | |||
+ | } | ||
+ | |||
+ | class Dog { | ||
+ | constructor (xposition, yposition, size, dColor, dPosition) | ||
+ | { | ||
+ | this.yposition = yposition; | ||
+ | this.xposition = xposition; | ||
+ | this.dogSize = size; | ||
+ | this.dogColor = dColor; | ||
+ | this.dogPosition = dPosition; | ||
+ | } | ||
+ | |||
+ | draw () { | ||
+ | // | ||
+ | fill(color(" | ||
+ | //Ears// | ||
+ | fill(Math.random()*255, | ||
+ | circle(circleY+this.xposition+115, | ||
+ | fill(Math.random()*255, | ||
+ | circle(circleY+this.xposition+275, | ||
+ | fill(Math.random()*255, | ||
+ | circle(circleY+this.xposition+115, | ||
+ | fill(Math.random()*255, | ||
+ | circle(circleY+this.xposition+275, | ||
+ | //Face// | ||
+ | fill(Math.random()*255, | ||
+ | circle(circleY+this.xposition+200, | ||
+ | //Eyes// | ||
+ | fill(0, | ||
+ | circle(circleY+this.xposition+160, | ||
+ | fill(0, | ||
+ | circle(circleY+this.xposition+250, | ||
+ | fill(Math.random()*255, | ||
+ | circle(circleY+this.xposition+165, | ||
+ | fill(Math.random()*255, | ||
+ | circle(circleY+this.xposition+245, | ||
+ | // Mouth // | ||
+ | noFill() | ||
+ | stroke(0, | ||
+ | arc(circleY+this.xposition+190, | ||
+ | arc(circleY+this.xposition+220, | ||
+ | // Nose// | ||
+ | fill(0,0,0) | ||
+ | rect(circleY+this.xposition+193, | ||
+ | //hat// | ||
+ | fill(Math.random()*255, | ||
+ | rect(circleY+this.xposition+165, | ||
+ | ellipse(circleY+this.xposition+200, | ||
+ | |||
+ | } | ||
+ | } | ||
+ | |||
+ | class Background { | ||
+ | constructor (xposition, yposition, size, bColor, bposition) | ||
+ | {this.yposition = yposition; | ||
+ | | ||
+ | this.backgroundSize = size; | ||
+ | this.backgroundColor = bColor; | ||
+ | this.backgroundposition = bposition; | ||
+ | } | ||
+ | draw () { | ||
+ | | ||
+ | | ||
+ | rect(this.xposition+30, | ||
+ | fill(Math.random()*255, | ||
+ | rect(this.xposition+40, | ||
+ | } | ||
+ | } | ||
+ | |||
+ | |||
+ | function dogRow (n, x, y) { | ||
+ | let outputArray = []; | ||
+ | for (let i = 0; i < n ; i++) { | ||
+ | outputArray.push(new Dog (x + (i*300), 0 + y, 1000, 1000)) | ||
+ | } | ||
+ | return outputArray | ||
+ | } | ||
+ | |||
+ | function backgroundRow (n, x, y) { | ||
+ | let outputArray = []; | ||
+ | for (let i = 0; i < n ; i++) { | ||
+ | outputArray.push(new Background (x + (i*300), 70 + y, 1000, 1000)) | ||
+ | } | ||
+ | return outputArray | ||
+ | } | ||
+ | |||
+ | function allDogs (startingX, startingY, numberOfRows, | ||
+ | for(let i = 0; i < numberOfRows ; i++){ | ||
+ | let myDogs = dogRow (rowLength, startingX, startingY+(i*350)); | ||
+ | for(let i = 0; i < myDogs.length ; i++){ | ||
+ | myDogs[i].draw() | ||
+ | } | ||
+ | } | ||
+ | } | ||
+ | |||
+ | function allBackground (startingX, startingY, numberOfRows, | ||
+ | for(let i = 0; i < numberOfRows ; i++){ | ||
+ | let myBackground = backgroundRow (rowLength, startingX, startingY+(i*350)); | ||
+ | for(let i = 0; i < myBackground.length ; i++){ | ||
+ | myBackground[i].draw() | ||
+ | } | ||
+ | } | ||
+ | } | ||
+ | function draw() { | ||
+ | background(220); | ||
+ | //let background2 = new Background (200,100, 1000,1000); | ||
+ | // | ||
+ | //for(let i = 0; i < myBackgrounds.length ; i++){ | ||
+ | // myBackgrounds[i].draw() | ||
+ | //} | ||
+ | //let dog2 = new Dog (200,100, 1000, 1000); | ||
+ | // | ||
+ | //for(let i = 0; i < myDogs.length ; i++){ | ||
+ | // myDogs[i].draw(); | ||
+ | // } | ||
+ | allBackground (50, 50, 5, 5) | ||
+ | allDogs (50, 50, 5, 5); | ||
+ | circleY = circleY + 10; | ||
+ | circleY = (frameCount*25) % height | ||
+ | } | ||
+ | |||
+ | </ |