Processing - 13 - for와 line을 사용한 그리기

2220 단어 processing

void setup() {
  size(500, 500);
  background(0);
  stroke(255, 60);
  noLoop();
}

void draw() {
  for (int i = 0; i < 100; i++) {
    float random = random(30);
    strokeWeight(random);
    float offset = random * 20.0;
    line(i-20, height, i+offset, 0);
  }
}

좋은 웹페이지 즐겨찾기