xxxxxxxxxx
61
var h1, h2, v1, v2;
function setup() {
createCanvas(400, 400);
frameRate(60);
h1 = random(width);
h2 = random(width);
v1 = random(height);
v2 = random(height);
}
function draw() {
background(220);
verticalCut();
horizontalCut();
h1 += 0.1;
h2 += 0.1;
v1 -= 0.2;
v2 -= 0.2;
// noLoop();
}
function verticalCut(){
fill(0, 0, 255, 100);
beginShape();
vertex(0, 0);
vertex(v1, 0);
vertex(v2, height);
vertex(0, height);
endShape();
fill(255, 0, 0, 100);
beginShape();
vertex(width, 0);
vertex(v1, 0);
vertex(v2, height);
vertex(width, height);
endShape();
}
function horizontalCut(){
fill(0, 0, 255, 100);
beginShape();
vertex(0, 0);
vertex(width, 0);
vertex(width, h2);
vertex(0, h1);
endShape();
fill(255, 0, 0, 100);
beginShape();
vertex(0, height);
vertex(width, height);
vertex(width, h2);
vertex(0, h1);
endShape();
}