Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
ben-crazydogjs [2021/06/14 23:39] – created renick | ben-crazydogjs [2021/06/20 18:27] (current) – brandon.chen | ||
---|---|---|---|
Line 2: | Line 2: | ||
< | < | ||
- | <iframe src=" | + | <iframe src=" |
</ | </ | ||
- | | + | This is my crazyDog.js. I've been working on it all semester. The hardest thing was... I'm proud of it because... The code for my artwork is below. It's licensed as Creative Commons XXXXX. |
- | let green=0; | + | |
- | let blue=0; | + | < |
- | let sun=144 | + | let red=0; |
- | let dogeColor=0 | + | let green=0; |
- | function setup() { | + | let blue=0; |
- | createCanvas(600, | + | let sun=144 |
- | dogeColor = random(255) | + | let dogeColor=0 |
- | } | + | function setup() { |
- | + | createCanvas(600, | |
- | + | dogeColor = random(255) | |
- | + | } | |
- | class Dog { | + | |
- | constructor (x ,y) | + | |
- | { | + | |
- | this.positionx = x | + | class Dog { |
- | this.positiony = y | + | constructor (x ,y) |
- | } | + | { |
- | draw () | + | this.positionx = x |
- | { | + | this.positiony = y |
- | + | } | |
- | fill(dogeColor) | + | draw () |
- | rect(this.positionx+65, | + | { |
- | rect(this.positionx+70, | + | |
- | rect(this.positionx+165, | + | fill(dogeColor) |
- | rect(this.positionx+160, | + | rect(this.positionx+65, |
- | rect(this.positionx+65, | + | rect(this.positionx+70, |
- | //ears | + | rect(this.positionx+165, |
- | rect(this.positionx+55, | + | rect(this.positionx+160, |
- | rect(this.positionx+25, | + | rect(this.positionx+65, |
- | //Head | + | //ears |
- | | + | rect(this.positionx+55, |
- | {let numberarray = [0, 15, 10, 5] | + | rect(this.positionx+25, |
- | let r = random(numberarray) | + | //Head |
- | //Eyes | + | circle(this.positionx+55, |
- | fill(0, | + | {let numberarray = [0, 15, 10, 5] |
- | circle(this.positionx+40, | + | let r = random(numberarray) |
- | circle(this.positionx+70, | + | //Eyes |
- | + | fill(0, | |
- | | + | circle(this.positionx+40, |
- | | + | circle(this.positionx+70, |
- | //mouth | + | } |
- | { | + | |
- | fill(' | + | //mouth |
- | arc(this.positionx+55, | + | { |
- | } | + | fill(' |
- | //teeths | + | arc(this.positionx+55, |
- | fill(" | + | } |
- | triangle(this.positionx+60, | + | //teeths |
- | if (mouseIsPressed) { | + | fill(" |
- | dogeColor = color(random (255), random(255), | + | triangle(this.positionx+60, |
- | } | + | if (mouseIsPressed) { |
- | } | + | dogeColor = color(random (255), random(255), |
- | } | + | } |
- | + | } | |
- | class backgroundPattern { | + | } |
- | constructor (x,y) | + | |
- | { | + | class backgroundPattern { |
- | this.xposition = x | + | constructor (x,y) |
- | this.yposition = y | + | { |
- | } | + | this.xposition = x |
- | draw () | + | this.yposition = y |
- | { | + | } |
- | //sun | + | draw () |
- | //outer | + | { |
- | noStroke(); | + | //sun |
- | fill(255, 165, 0, 50); | + | //outer |
- | if(sun> | + | noStroke(); |
- | circle(150, sun--, 200); | + | fill(255, 165, 0, 50); |
- | } | + | if(sun> |
- | else if(sun==105){ | + | circle(150, sun--, 200); |
- | circle(150, sun, 200); | + | } |
- | } | + | else if(sun==105){ |
- | //inner | + | circle(150, sun, 200); |
- | noStroke(); | + | } |
- | fill(255, 100, 0, 100); | + | //inner |
- | if(sun> | + | noStroke(); |
- | circle(150, sun--, 150); | + | fill(255, 100, 0, 100); |
- | } | + | if(sun> |
- | else if(sun==105){ | + | circle(150, sun--, 150); |
- | circle(150, sun, 150); | + | } |
- | } | + | else if(sun==105){ |
- | + | circle(150, sun, 150); | |
- | //clouds | + | } |
- | fill(dogeColor) | + | //clouds |
- | circle(this.xposition+50, | + | fill(dogeColor) |
- | circle(this.xpositionx+80, | + | circle(this.xposition+50, |
- | circle(this.xposition+100, | + | circle(this.xpositionx+80, |
- | circle(this.xposition+110, | + | circle(this.xposition+100, |
- | circle(this.xposition+120, | + | circle(this.xposition+110, |
- | circle(this.xposition+110, | + | circle(this.xposition+120, |
- | circle(this.xposition+100, | + | circle(this.xposition+110, |
- | circle(this.xposition+80, | + | circle(this.xposition+100, |
- | | + | circle(this.xposition+80, |
- | //hat | + | stroke(0, |
- | fill(' | + | //hat |
- | | + | fill(' |
- | rect (this.xposition + 35, 330, | + | ellipse (this.xposition + 55, 390, 70, 40) |
- | //tie | + | rect (this.xposition + 35, 330, |
- | fill(0, | + | //tie |
- | rect(this.xposition+100, | + | fill(0, |
- | triangle(this.xposition+100, | + | rect(this.xposition+100, |
- | textSize(32); | + | triangle(this.xposition+100, |
- | //Click Me | + | textSize(32); |
- | fill(' | + | //Click Me |
- | text(' | + | fill(' |
- | + | text(' | |
- | } | + | |
- | + | } | |
- | } | + | |
- | function draw() { | + | |
- | | + | |
- | for(let i = 0; i<100 ; i++) { | + | |
- | let dog1 = new Dog (i*150, 213+(i*0)) | + | |
- | | + | |
- | dog1 | + | |
- | ] | + | |
- | for (let i = 0; i < dogarr.length; | + | |
- | } | + | |
- | for(let i =0; | + | |
- | let background1 = new backgroundPattern (i*150, | + | |
- | backgroundPatternarr = [ | + | |
- | background1 | + | |
- | ] | + | |
- | for(let i = 0; i< backgroundPatternarr.length; | + | |
- | } | + | |
- | } | + | |
| | ||
+ | } | ||
+ | function draw() { | ||
+ | background(red+=5, | ||
+ | for(let i = 0; i<100 ; i++) { | ||
+ | let dog1 = new Dog (i*150, 213+(i*0)) | ||
+ | dogarr = [ | ||
+ | dog1 | ||
+ | ] | ||
+ | for (let i = 0; i < dogarr.length; | ||
+ | } | ||
+ | for(let i =0; | ||
+ | let background1 = new backgroundPattern (i*150, | ||
+ | backgroundPatternarr = [ | ||
+ | background1 | ||
+ | ] | ||
+ | for(let i = 0; i< backgroundPatternarr.length; | ||
+ | } | ||
+ | } | ||
+ | </ | ||
+ | |||