Coffee for Two I like taking drawings I find online and seeing if I can recreate them in code. Here's my latest: Coffee for Two. Here's the original from @gregcatarino1 : And here is the code: /* after:https://x.com/gregcatarino1/status/2024795951710236868/photo/1 */ function setup() { createCanvas(450, 500); // 450, 500 angleMode(DEGREES); noLoop(); } function draw() { background(220); //line(300,0, 300,600); strokeWeight(1); stroke(0); push() translate(0,-20); man(); push(); translate(-30,0); woman(); pop(); pop(); push(); scale(0.5); drawCursiveM(765, 940, 45); // x, y, size pop(); } function man(){ /* head */ //neck line(150,50, 130, 120); //hair noFill(); curve(145, 50, 145,50, 190,55, 145, 15); curve(145, 48, 145,48, 190,55, 145, 15); line(160,54, 205,54); line(160,53, 210,53); //face beginShape(); vertex(180,56); bezierVertex(185,75,171,100,171,...