diff --git a/example-p5/JS/sketch.js b/example-p5/JS/sketch.js deleted file mode 100644 index 192a8f9..0000000 --- a/example-p5/JS/sketch.js +++ /dev/null @@ -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) -} \ No newline at end of file