Browse Source

Delete 'example-p5/JS/sketch.js'

master
JoanaChicau 8 months ago
parent
commit
2834c8266c
  1. 23
      example-p5/JS/sketch.js

23
example-p5/JS/sketch.js

@ -1,23 +0,0 @@
/* based on tutorial #6: p5.js Sketch as Background @ The Code Train */
var canvas;
var mic;
function windowResized() {
resizeCanvas(windowWidth,windowHeight)
}
function setup () {
canvas = createCanvas(windowWidth,windowHeight)
canvas.position(0,0);
canvas.style('z-index', '-1')
mic = new p5.AudioIn();
mic.start()
}
function draw () {
background('#88afff');
describe('canvas with light blue background');
var vol = mic.getLevel();
ellipse(width/2, height/2, vol*100)
}
Loading…
Cancel
Save