p5.js中的displayDensity()函数用于返回当前显示草图的像素密度。
用法:
pixelDensity(density)
参数:此函数接受存储显示密度的单个参数密度。
以下示例程序旨在说明p5.js中的displayDensity()函数:
例:
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);
}
输出:
参考: https://p5js.org/reference/#/p5/displayDensity
相关用法
- p5.js tan()用法及代码示例
- d3.js d3.map.set()用法及代码示例
- d3.js d3.hsl()用法及代码示例
- p5.js sin()用法及代码示例
- p5.js log()用法及代码示例
- PHP key()用法及代码示例
- PHP pos()用法及代码示例
- p5.js cos()用法及代码示例
- PHP each()用法及代码示例
- p5.js second()用法及代码示例
- PHP Ds\Map get()用法及代码示例
- p5.js day()用法及代码示例
注:本文由纯净天空筛选整理自sarthak_ishu11大神的英文原创作品 p5.js | displayDensity() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。