xxxxxxxxxx
15
let video;
function setup() {
createCanvas(400, 400);
background(220);
video = createCapture(VIDEO);
video.size(320, 240);
// video.hide();
}
function draw() {
// for (var i=0; i<width; i+=width/10){
// image(video, i,i,width/10,width/10);
// }
}