The relationship between mouseX and the width of the ellipse is positive: as mouseX increases, so does the width.
The relationship between Y (vertical move) and the speed of the ball is a diminishing one, as the ball goes higher, it slows down. The relationship between X (horizontal move) and the speed of the ball is an amplifying one, since as the amount of X increases, so does the speed.
The elements common to all of your sketches are: position, dimensions, stroke thickness, color values. Can you relate one or more of these elements to:
New self-portrait link: https://editor.p5js.org/mvlikaa/sketches/aDH9LxWhW
Different things I tried before landing here:
let controlX=0;
let speedX=5;
function draw() {
background(220);
controlX+=speedX;
if ((controlX>150) || (controlX<0)) {
speedX*=-1;
}
circle(50,100,5);
circle(250,100,5);
noFill();
bezier(209,172,222,160,223,170, 222,172)