xxxxxxxxxx
22
function setup() {
createCanvas(800, 800);
addEffects(
// sobel()
noiseDisplacement(),
godrays({ samplerNum: -1, lightPos: nMouse() }),
oldFilm(),
vignette()
);
background(220);
}
function draw() {
// noLoop();
background(220);
rectMode(CENTER);
translate(width/2,height/2);
fill(0)
rect(0,0,400,400);
}