Test 2

not sketch

function setup() {
    createCanvas(200, 200);
    background(220, 0, 0);
    ellipse(100, 100, 50, 50) /* 100, 100 is the coordinates, 50, 50 is the radius of the ellipse */
}

function draw() {
    background(220, 0, 0, 0)
    fill(255, 200, 200) /* RGB color of ellipse */
    stroke(0, 255, 200) /* the color of the outline of the circle */
    ellipse(mouseX, mouseY, 50, 50) /* drawing repeating ellipses*/

}

class=”p5-embed” makes thing and code show up
data-width=”x” sets size of canvas to make sure it fits

fake project post

sketchysketch

function setup() {
    createCanvas(200, 200);//x, y
    background(0, 30, 0);//rgb values, go from 1 to 255, 000 is darkest color, 4th is alpha (opacity)
}

function draw() {
	background(0, 30, 0); //makes it so that the background covers circles so there's no trail
	fill(255, 200, 200); //fill of circle
	stroke(0, 255, 20); //stroke of circle
	ellipse(mouseX, mouseY, 50, 50);


}