-
Notifications
You must be signed in to change notification settings - Fork 0
/
sketch2.js
58 lines (50 loc) · 1015 Bytes
/
sketch2.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
var cols, rows;
var scl = 10;
var w = 500;
var h = 500;
var flying = 0;
var terrain = [];
function setup() {
createCanvas(w, h);
cols = w/ scl;
rows = h/ scl;
}
// function draw() {
// background(50);
// stroke(255);
// noFill();
// beginShape();
// var xoff=0;
// for (var x = 0; x < width;x++){
// var y = noise(xoff) * height;
// vertex(x,y);
// xoff+=0.02
// }
// endShape();
// }
function draw() {
if(mouseIsPressed) {
fill(0);
} else {
fill(255);
}
ellipse(mouseX, mouseY, 80,80);
}
// function draw() {
// // for(var i = 0; i < terrain.length;i++) {
// //
// // }
// background(100);
// stroke(0);
// // fill(255);
// for(var i = 0; i < cols; i++) {
// for(var j = 0;j<rows;j++) {
// // Gennerate Perlin Noise from the X,Y coordinates, scale it and map it to BW color scale
// fill(map(noise(i,j)*0.3,0,1,0,255));
// rect(i*scl,j*scl,scl-1,scl-1);
// }
// }
// // rect(50,50,80,80);
//
// noLoop();
// }