Processing - 05 - text와 random을 사용한 그리기

1743 단어 processing

void setup() {
  size(500, 500);
  background(255);
  frameRate(20);
}

void draw() {
  fill(random(70,250),50);
  textSize(random(10, 36));
  text(int(random(10)), random(width), random(height));
}

좋은 웹페이지 즐겨찾기