P5.js 한국어 참조 (pixelDensity)
1988 단어 p5.jsprocessing자바스크립트
pixelDensity()
설명문
높은 픽셀 밀도 디스플레이의 픽셀 스케일링을 설정합니다. 기본적으로 픽셀 밀도는 디스플레이 밀도와 일치하도록 설정됩니다. 이를 끄려면 pixelDensity(1) 를 호출합니다. 인수 없이 pixelDensity() 를 호출하면, 스케치의 현재의 픽셀 밀도가 돌려주어집니다.
구문
pixelDensity(val)
pixelDensity()
매개변수
Number : 픽셀 스케일링 값
예
function setup() {
pixelDensity(1);
createCanvas(100, 100);
background(200);
ellipse(width / 2, height / 2, 50, 50);
}
실행 결과
저작권
p5.js was created by Lauren McCarthy and is developed by a community of collaborators, with support from the Processing Foundation and NYU ITP. Identity and graphic design by Jerel Johnson.
라이센스
Creative Commons(CC BY-NC-SA 4.0)를 따릅니다.
Reference
이 문제에 관하여(P5.js 한국어 참조 (pixelDensity)), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/bit0101/items/81c550e1448bc0361ba7텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)