xxxxxxxxxx
24
// https://editor.p5js.org/whatmakeart/sketches/NGOVoTnMd
// basic functions
function setup() {
createCanvas(600, 600);
myNewFunction("new value", "other value");
}
function draw() {
background(20, 145, 68);
showText("functions");
}
function myNewFunction(parameter, parameter2) {
// do stuff
console.log(parameter);
console.log(parameter2);
}
function showText(textToDisplay = "Default") {
textSize(120);
text(textToDisplay, 50, height / 2);
}