I’m trying different neutral space shapes to break up the chaos from all the overlapping doodles in these squiggle generative pieces. These clouds were drawn with a Pentel brush pen and then scanned in as individual assets.
I set up my canvas in p5.js to 3300px X 5100px, which works out to be 11×17″ @ 300 dpi for possible future printing. These take a minute to load and render the first time the canvas loads but after that, I have a command that will generate a new scene when hitting ENTER.
function keyPressed() {
if (key === 'Enter') {
redraw();
}
}