UNPKG
p5.gibber.js
Version:
latest (0.2.4)
0.2.4
0.2.3
0.2.0
0.1.0
0.0.3
0.0.2
0.0.1
0.0.0
Music and audio programming for p5.js
p5.gibber.js
/
examples
/
p5.gibber.simple.example
/
sketch.js
10 lines
(8 loc)
•
182 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
function
setup
()
{ createCanvas( windowWidth, windowHeight ) drums = EDrums(
'x*o*x*o-'
) follow = Follow( drums ) }
function
draw
()
{ background( follow.getValue() *
255
) }