xxxxxxxxxx
44
count=0;
function preload() {
img = loadImage('boatrights1.png');
}
function setup() {
createCanvas(1800, 2400);
background(255);
noStroke();
let x = random(300);
let y = random(300);
let pix = img.get(x, y);
fill(pix);
let w = random(width-(width/3));
let h = random(800,1300);
let b = random(width/3);
let s = random(width/3);
rect(s, 0, w, random(300,500));
image(img, b, 0, h, random(200,400));
}
function draw() {
var x1 = floor(random(width));
var y1 = -10;
var x2 = round(x1 + random(-4, 4));
var y2 = round(y1 + random(0, 30));
var w = floor(random(10, 80));
var h = height;
set(x2, y2, get(x1, y1, w, h));
count=count+0.1;
if (count>310) {noLoop();}
}