Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
joann-hsu-generative [2021/06/20 18:28] – joann.hsu | joann-hsu-generative [2021/06/29 01:36] (current) – renick | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | =====Joann' | + | ======Joann |
+ | by [[joann-hsu|Joann]] | ||
< | < | ||
- | <iframe src=" | + | <iframe src=" |
</ | </ | ||
+ | ===== about my crazyDog.js ===== | ||
- | <code:js> | + | This is my crazyDog.js. In this semester, we have to work on this every day, we start learning from the simplest part. I think the hardest part was the symbols. If there is an error and our crazyDog can't appear, so that is very hard to adjust. I'm really proud because I've never been doing those cool things like this before, so I have a chance to program this, I feel It's amazing. The code for my artwork is below. |
+ | |||
+ | The animation code is released under the [[https:// | ||
+ | |||
+ | ===== the code for my crazyDog.js ===== | ||
+ | |||
+ | <Code:js> | ||
let x = 0; | let x = 0; | ||
let y = 0; | let y = 0; | ||
let dim = 0.0; | let dim = 0.0; | ||
+ | |||
function setup() { | function setup() { | ||
createCanvas(1800, | createCanvas(1800, | ||
+ | |||
} | } | ||
+ | |||
class dog{ | class dog{ | ||
constructor(x, | constructor(x, | ||
Line 60: | Line 68: | ||
} | } | ||
let myDog = dogArray(25); | let myDog = dogArray(25); | ||
+ | |||
class patternA{ | class patternA{ | ||
constructor(x, | constructor(x, | ||
Line 79: | Line 87: | ||
} | } | ||
let myPatternA = patternAArray(30); | let myPatternA = patternAArray(30); | ||
+ | |||
class patternB{ | class patternB{ | ||
constructor(x, | constructor(x, | ||
Line 98: | Line 106: | ||
} | } | ||
let myPatternB = patternBArray(30); | let myPatternB = patternBArray(30); | ||
+ | |||
class sun{ | class sun{ | ||
constructor(x, | constructor(x, | ||
Line 111: | Line 119: | ||
} | } | ||
} | } | ||
+ | |||
class grass{ | class grass{ | ||
constructor(x, | constructor(x, | ||
Line 143: | Line 151: | ||
} | } | ||
} | } | ||
+ | |||
function draw() { | function draw() { | ||
background(255, | background(255, | ||
Line 163: | Line 171: | ||
for (let i = 0; i < myDog.length ; i++){ | for (let i = 0; i < myDog.length ; i++){ | ||
myDog[i].draw()} | myDog[i].draw()} | ||
+ | |||
} | } | ||
- | </code> | + | </Code> |