function setup() {
createCanvas(200, 200);
background(220, 0, 0);
}
function draw() {
//inside color
fill(100, 20, 255);
ellipse(mouseX, mouseY, 50, 50);
}
Category: Uncategorized
fake project
function setup() {
createCanvas(300, 300);
background(220, 10, 255);
}
function draw() {
background(220, 10, 255)
//inside color
fill(30, 250, 200)
//border color
stroke(50, 100, 255)
ellipse(mouseX, mouseY, 50, 50)
}
fake project post
function setup() {
createCanvas(200, 200);
background(220, 0, 0);
}
function draw() {
background(220, 0, 0, 0.5)
//nside color
fill(220, 230, 100);
//border color
stroke(0, 255, 200)
ellipse(mouseX, mouseY, 50, 50)
}
fake project!!!
function setup() {
createCanvas(500, 500);
background(220, 49, 190);
}
function draw() {
background(220, 49, 190);
//doesn't overlap, like paintbucket
ellipse(mouseX, mouseY, 25, 25);
fill(149, 120, 124);
//inside color
stroke(20, 240, 20);
//outline
;
}
fake proj post rrandell
function setup() {
createCanvas(1000, 1000);
background(220, 0, 0);
text("p5.js vers 0.5.12 test.", 10, 15);
}
function draw() {
//inside color
fill(255, 200, 200)
//border color
stroke(0, 230, 200)
ellipse (mouseX, mouseY, 50, 50)
}
fake project post
function setup() {
createCanvas(200,200);
}
function draw() {
background(120, 150, 240);
fill(255,200,200);
noStroke();
ellipse(mouseX,mouseY, 50, 50)
}
Emily’s Fun Code
function setup() {
createCanvas(200, 200);
background(220, 300, 30);
}
function draw() {
background(220, 300, 30)
//inside color
fill(0, 200, 255);
//border color
stroke(20, 170, 60);
ellipse(mouseX, mouseY, 50, 50);
}
fake project post
function setup() {
createCanvas(200, 200);
background(220, 70, 53);
}
function draw() {
fill(223, 45, 129);
stroke(45, 20, 78);
ellipse(mouseX, mouseY, 50, 50);
}
Placebo Post!
function setup() {
createCanvas(200, 200);
background(120, 100, 200);
}
function draw() {
background(120, 100, 200);
//inside color
fill(200, 100, 250)
//border color
stroke(120, 200, 200)
ellipse(mouseX, mouseY, 50, 50);
}
fake project post
function setup() {
createCanvas(300, 300);
background(220, 0, 0);
}
function draw() {
background(220, 0, 0)
fill(70, 200, 100)
stroke(0, 255, 0)
ellipse(mouseX, mouseY, 50, 50);
}