xxxxxxxxxx
function setup() {
createCanvas(800, 800);
noLoop();
}
function draw() {
background(palette.background);
let options = {
shouldAddRandomRotation:true,
drawABackgroundForMe: random([true, false])
};
const drawFn = random([drawExampleSketch1, drawExampleSketch2]);
drawFramedGridOfCompositions(drawFn, options);
}
function mousePressed() {
redraw();
}