Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
sharon-chou-generative [2021/06/20 17:57] – created sharon.chou | sharon-chou-generative [2021/06/29 01:42] (current) – renick | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ======SHARON'S CRAZY DOG.JS | + | ======Sharon Chou' |
+ | Made By: [[sharon-chou|Sharon Chou]] | ||
< | < | ||
- | <iframe src=" | + | <iframe src=" |
</ | </ | ||
+ | |||
+ | ===== About My CrazyDog.js ===== | ||
+ | |||
+ | Our class has this class called function class or programming class. What we do there is learn about some programming and functions. Recently we have been on this site call P5.JS. There we use functions to create different and unique dogs. We make one of them and then use this function that makes them loop. This also follows the design process from before. We made a sketch thing and then we made corrections over and over again. Currently we are trying to make animation using P5.JS! | ||
+ | |||
+ | This is my crazyDog.js. I've been working on it all semester. The hardest thing was that a lot of the times the teacher will teach me, but then I don't get it even though he has explained it multiple times. I'm proud of it because I actually managed to complete it with a animation with no errors! The code for my artwork is below. | ||
+ | |||
+ | The animation code is released under the [[https:// | ||
+ | |||
+ | ===== The Code For My CrazyDog.js ===== | ||
+ | |||
+ | < | ||
+ | //let x1 = 0; | ||
+ | //let y2 = 0; | ||
+ | |||
+ | function setup() { | ||
+ | createCanvas(1800, | ||
+ | //noLoop() | ||
+ | // let x, y; | ||
+ | // x1 = width / 2; | ||
+ | // y2 = height; | ||
+ | } | ||
+ | |||
+ | function backgroundPatternRow (startx1, | ||
+ | for (let i=0; | ||
+ | fill (" | ||
+ | square(startx1+(i*100), | ||
+ | } | ||
+ | } | ||
+ | |||
+ | function backgroundPatternRowCircle (startx1, | ||
+ | for (let i=0; | ||
+ | fill (255, 254, 214) | ||
+ | circle(startx1+(i*5), | ||
+ | } | ||
+ | } | ||
+ | |||
+ | class Background { | ||
+ | constructor (xstart, | ||
+ | { this.startx = xstart; | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | } | ||
+ | draw () { | ||
+ | for (let i=0;i < this.LoopY; | ||
+ | // | ||
+ | backgroundPatternRowCircle (this.startx, | ||
+ | backgroundPatternRow (this.startx, | ||
+ | } | ||
+ | } | ||
+ | } | ||
+ | | ||
+ | | ||
+ | |||
+ | |||
+ | class Dog { | ||
+ | constructor (positionx, positiony) | ||
+ | { this.xposition = positionx; | ||
+ | | ||
+ | } | ||
+ | //earlope1 | ||
+ | draw(){ | ||
+ | fill (Math.random()*255, | ||
+ | square(this.xposition+90, | ||
+ | fill(Math.random()*255, | ||
+ | circle(this.xposition+132, | ||
+ | |||
+ | //ear lope2 | ||
+ | fill(Math.random()*255, | ||
+ | square(this.xposition+170, | ||
+ | fill(Math.random()*255, | ||
+ | circle(this.xposition+226, | ||
+ | |||
+ | //body | ||
+ | ellipse(this.xposition+185, | ||
+ | |||
+ | //hands | ||
+ | fill (Math.random()*255, | ||
+ | circle(this.xposition+150, | ||
+ | |||
+ | //HAND | ||
+ | fill (Math.random()*255, | ||
+ | circle(this.xposition+210, | ||
+ | |||
+ | //hands | ||
+ | fill (Math.random()*255, | ||
+ | circle(this.xposition+210, | ||
+ | //hands | ||
+ | fill (Math.random()*255, | ||
+ | circle(this.xposition +150, this.yposition+250, | ||
+ | //head | ||
+ | fill (Math.random()*255, | ||
+ | circle(this.xposition +180, this.yposition+140, | ||
+ | |||
+ | //eyes2 | ||
+ | fill (Math.random()*255, | ||
+ | circle(this.xposition+210, | ||
+ | |||
+ | //eyeballs2 | ||
+ | fill (Math.random()*255, | ||
+ | circle (this.xposition+209, | ||
+ | |||
+ | //eyeballs3 | ||
+ | fill (255, | ||
+ | circle (this.xposition+209, | ||
+ | |||
+ | //eyeballs 1 | ||
+ | fill (1,1,1) | ||
+ | circle (this.xposition+150, | ||
+ | |||
+ | //inside eyeballs | ||
+ | fill (255, | ||
+ | circle (this.xposition+150, | ||
+ | |||
+ | |||
+ | //mouth | ||
+ | fill (Math.random()*255, | ||
+ | ellipse(this.xposition+180, | ||
+ | //mouth1 | ||
+ | fill (Math.random()*255, | ||
+ | ellipse(this.xposition+180, | ||
+ | |||
+ | |||
+ | | ||
+ | } | ||
+ | } | ||
+ | |||
+ | function backgroundPatternArray (n) { | ||
+ | let outputArray = []; | ||
+ | for (let i = 0; i < n ; i++) { | ||
+ | outputArray.push(new Background (8 + (i*10), | ||
+ | } | ||
+ | return outputArray | ||
+ | } | ||
+ | |||
+ | function dogArray (n, y) { | ||
+ | let outputArray = []; | ||
+ | for(let k = 0; k <n ; k++){ | ||
+ | for (let i = 0; i < n ; i++) { | ||
+ | outputArray.push(new Dog ((100+100)*i, | ||
+ | } | ||
+ | } | ||
+ | return outputArray | ||
+ | } | ||
+ | |||
+ | let myBackground = backgroundPatternArray (1); | ||
+ | console.log(myBackground); | ||
+ | |||
+ | function draw() { | ||
+ | background(0); | ||
+ | //let background1 = new Background (8, | ||
+ | // | ||
+ | //for(let i = 0; i< myBackground.length; | ||
+ | // | ||
+ | //} | ||
+ | |||
+ | let trashdog = dogArray (9,-1 * (frameCount% 3000)); | ||
+ | |||
+ | for(let i = 0; i< trashdog.length; | ||
+ | trashdog[i].draw(); | ||
+ | } | ||
+ | text((" | ||
+ | |||
+ | } | ||
+ | </ | ||
+ | |||
+ | ===Go to this page to see our dogs!=== | ||
+ | [[all-dogs|All of our dogs]] | ||
+ | |||
+ |