/* P5.JS will always have a place in my coding heart.
It has its own library and online code editor, and so much is possible.
But, p5.js was the first type of Javascript I learned.
So learning real, non-library Javascript became harder.
I DEFINITELY think you should learn P5.JS
Just not as your first learning of a language.
So much is possible with P5 that it's insane, check out
The Coding Train on YT for learning!*/
function setup() {
createCanvas(400, 400);
}
function draw() {
if (mouseIsPressed) {
fill(0);
} else {
fill(255);
}
ellipse(mouseX, mouseY, 80, 80);
}
function setup() {
createCanvas(400, 400);
}
function draw() {
background(220);
ellipse(50,50,80,80);
}
I sure like p5.js as I do alot of programming stuff
(I also made The Flag Finding Game with processing)