p5.js 이미지 썸네일형 리스트형 p5.js로 이미지 다루기 1. 이미지 불러오기// 이미지 객체를 생성 후 출력let img;function preload() { img = loadImage("sample.jpg");}function setup() { createCanvas(500, 500);}function draw() { background(0); image(img, 0, 0);}2. 이미지 생성 후 여러 개 출력// 이미지 객체를 생성 후 복수 개 출력let img; let x = 0, y = 0;function preload() { img = loadImage("sample.jpg");}function setup() { createCanvas(500, 500);}function draw() { background(0); image(img, .. 더보기 이전 1 다음