-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsketch.js
executable file
·59 lines (38 loc) · 879 Bytes
/
sketch.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
/*
To create a server
$ cd WebDev/p5js/myProjects
$ python -m SimpleHTTPServer
*/
var canvasSize;
var img, song;
function preload(){
// img = loadImage("image.jpg");
// song = loadSound('song.mp3');
}
function setup() {
/*
// For a sqaure canvas
if ( windowWidth > windowHeight) {canvasSize = windowHeight;}
else {canvasSize = windowWidth;}
var myCanvas = createCanvas(canvasSize, canvasSize);
*/
var myCanvas = createCanvas(windowWidth/1.8,windowHeight/1.8);
myCanvas.parent("myCanvas");
smooth();
noFill();
noStroke();
background(120,0,0);
}
function draw() {
if (focused) test();
}
function test(){
stroke(155);
if (mouseIsPressed) {fill(55);}
else { fill(255);}
ellipse(mouseX, mouseY, width/10, width/10);
}
function touchMoved() {
ellipse(touchX, touchY, width/10, width/10);
return false;
}