La función setup() se ejecuta cuando se inicia el programa. Se utiliza para establecer las propiedades del entorno inicial, como el color del texto, el tamaño de la pantalla, el color de fondo y cargar el archivo multimedia, como imágenes y fuentes. El programa contiene solo una función setup(). La función setup() no se puede volver a llamar después de su ejecución inicial.
Nota: La declaración de variables dentro de la función setup() no puede ser accedida por otras funciones, incluida la función dibujar().
Sintaxis:
setup()
Los siguientes ejemplos ilustran la función setup() en p5.js:
Ejemplo 1:
function setup() { // Create Canvas of given size createCanvas(400, 300); } function draw() { background(220); // Use color() function let c = color('green'); // Use fill() function to fill color fill(c); // Draw a rectangle rect(50, 50, 300, 200); }
Producción:
Ejemplo 2:
function setup() { // Create Canvas of given size var cvs = createCanvas(600, 250); } function draw() { // Set the background color background('green'); // Use createDiv() function to // create a div element var myDiv = createDiv('GeeksforGeeks'); var myDiv1 = createDiv('A computer science portal for geeks'); // Use child() function myDiv.child(myDiv1); // Set the position of div element myDiv.position(150, 100); myDiv.style('text-align', 'center'); // Set the font-size of text myDiv.style('font-size', '24px'); // Set the font color myDiv.style('color', 'white'); }
Producción: