At first I really wanted to make something symmetrical but that just wasn’t working for me. So I decided to make a scribble star. It was a challenge working with the curves. I find myself constantly comparing the capabilities of p5 with Photoshop, which just makes me miss Photoshop. I did my best to hint at the qualities of stars while constrained to childlike scribbles.
sketch
function setup() {
createCanvas(480, 640);
}
function draw() {
var color1 = color(255, 249, 0); var color2 = color(101, 25, 204); var num = map(mouseX, 0, width, 0, .80); var backColor = lerpColor(color1, color2, num);
background(backColor);
var bend = map(mouseX, 0, width, -5, 5); curveTightness(bend); noFill();
stroke(255, 249, 0);
beginShape();
curveVertex(204,89);
curveVertex(102, 515);
curveVertex(462, 251);
curveVertex(102, 515);
curveVertex(204, 89);
curveVertex(378, 515);
curveVertex(18, 251);
curveVertex(462, 251);
curveVertex(102, 515);
endShape();
push();
var sScale = map(mouseX, 0, width, 0, -60);
var bend2 = map(mouseX, 0, width, 5, -5); curveTightness(bend2); noFill();
stroke(255, 249, 0);
beginShape();
curveVertex(204,89 - sScale); curveVertex(102 - sScale, 515 + sScale);
curveVertex(462 + sScale, 251);
curveVertex(102 - sScale, 515 + sScale);
curveVertex(204, 89 - sScale);
curveVertex(378 + sScale, 515 + sScale);
curveVertex(18 - sScale, 251);
curveVertex(462 + sScale, 251);
curveVertex(102 - sScale, 515 + sScale);
endShape();
pop();
push();
var rot = map(mouseY, 0, height, 45, 360); var recScale = map(mouseX, 0, width, 1, .75); stroke(255, 249, 0);
rectMode(CENTER);
translate(240, 320);
scale(recScale);
rotate(radians(rot));
rect(0,0,400,400);
pop();
push();
var rot2 = map(mouseY, 0, height, -45, -360);
stroke(255, 249, 0);
rectMode(CENTER);
translate(240, 320);
scale(recScale);
rotate(radians(rot2));
rect(0,0,400,400);
pop();
push();
var cScale = map(mouseX, 0, width, 1, .75) stroke(255, 249, 0);
fill(255, 249, 0, 40);
translate(240, 320);
scale(cScale);
ellipse(0, 0, 410, 410);
pop();
}