complete exercise 0.3
This commit is contained in:
parent
c9523bd229
commit
cb14f6543b
15
0. Randomness/3. Mouse Walker/index.html
Normal file
15
0. Randomness/3. Mouse Walker/index.html
Normal file
@ -0,0 +1,15 @@
|
||||
<html>
|
||||
<head>
|
||||
<script src="https://cdn.jsdelivr.net/npm/p5@1.9.0/lib/p5.js"></script>
|
||||
<script src="sketch.js"></script>
|
||||
<style>
|
||||
body {
|
||||
background: #212121;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<main>
|
||||
</main>
|
||||
</body>
|
||||
</html>
|
43
0. Randomness/3. Mouse Walker/sketch.js
Normal file
43
0. Randomness/3. Mouse Walker/sketch.js
Normal file
@ -0,0 +1,43 @@
|
||||
function clamp(x, min_x, max_x) {
|
||||
return min(max(x, min_x), max_x)
|
||||
}
|
||||
|
||||
class Walker {
|
||||
constructor(x = 0, y = 0) {
|
||||
this.x = x
|
||||
this.y = y
|
||||
}
|
||||
|
||||
step() {
|
||||
let dx = 0
|
||||
let dy = 0
|
||||
if (random(1) < 0.5) {
|
||||
dx = clamp(mouseX - this.x, -1, 1)
|
||||
dy = clamp(mouseY - this.y, -1, 1)
|
||||
} else {
|
||||
dx = floor(random(3)) - 1
|
||||
dy = floor(random(3)) - 1
|
||||
}
|
||||
|
||||
this.x += dx
|
||||
this.y += dy
|
||||
}
|
||||
|
||||
draw() {
|
||||
stroke(0)
|
||||
point(this.x, this.y)
|
||||
}
|
||||
}
|
||||
|
||||
let walker
|
||||
|
||||
function setup() {
|
||||
createCanvas(640, 240)
|
||||
background(255)
|
||||
walker = new Walker(320, 120)
|
||||
}
|
||||
|
||||
function draw() {
|
||||
walker.step();
|
||||
walker.draw();
|
||||
}
|
Loading…
Reference in New Issue
Block a user