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);
}
Month: August 2018
fake project post!
function setup() {
createCanvas(500, 500);
background(220, 0, 0);
}
function draw() {
background(220, 0, 0);
fill(255, 1500, 180);
stroke(100, 115, 215);
ellipse(mouseX, mouseY, 150, 50);
}
fake project post
function setup() {
createCanvas(500, 500);
background(220, 0, 0);
ellipse(250, 250, 50, 50)
}
function draw() {
fill(150, 85, 100, 40)
stroke (230, 100, 100)
ellipse(mouseX, mouseY, 100,200)
}
Looking Outwards eblank
fake looking outwards
Looking Outwards Practice
This is a fake looking outwards post!
Fake Looking Outwards
hello
fake project post
function setup() {
createCanvas(200, 200);
background(220, 0, 0);
}
function draw() {
background(220, 0, 0);
//insidecolor
ellipse(mouseX, mouseY, 50, 50)
}
fake looking outwards
note to future me: gifs gotta be full size
Fake post!
Nice