xxxxxxxxxx
32
let capture;
let x = [];
let y = [];
let theta = [];
let nscreen = 4;
let spreadby = 300;
const imwidth = 800;
const imheight = 600;
function setup() {
createCanvas(1400,800);
capture = createCapture(VIDEO);
capture.size(imwidth, imheight);
for (let i = 0; i < nscreen; i++) {
x.push(random(spreadby));
y.push(random(spreadby));
theta.push(random(360));
}
console.log(x, y, theta);
}
function draw() {
background(0);
for (let i = 0; i < nscreen; i++) {
push();
translate(width/2+x[i],height/2+y[i]);
tint(255,80)
rotate(theta[i]);
image(capture, -imwidth/2, -imheight/2, imwidth, imheight);
pop();
}
}