La función displayDensity() en p5.js se usa para devolver la densidad de píxeles de la pantalla actual del boceto.
Sintaxis:
pixelDensity(density)
Parámetros: esta función acepta la densidad de un solo parámetro que almacena la densidad de visualización.
El siguiente programa ilustra la función displayDensity() en p5.js:
Ejemplo:
function setup() { // Create canvas of given size createCanvas(windowWidth, windowHeight); // Call the displayDensity function let density = displayDensity(); pixelDensity(density); } function draw() { // Set the background color background(0, 200, 0); // Set text color color("green"); // Set font size textSize(30); // Set text alignment textAlign(CENTER); // Set text to be add text("GeeksForGeeks!", windowWidth/2, windowHeight/2); // Display pixelDensity on the screen text("PixelDensity is " + pixelDensity(), windowWidth/2, windowHeight/2+40); }
Producción:
Referencia: https://p5js.org/reference/#/p5/displayDensity
Publicación traducida automáticamente
Artículo escrito por sarthak_ishu11 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA