Processing - 12 - rect와 이중 for를 사용한 그리기

2524 단어 processing

void setup () {
  size (500, 500);
  background (255);
  noStroke ();
  noLoop ();
}

void draw () {
  for (int n = 0; n < 8; n++) {
    for (int i = 0; i < 10; i++) {
      fill(0,       0+n*20,  i*20, 125);
      rect(i*40+50, 50+n*50, 35,   35);
    }
  }
}


좋은 웹페이지 즐겨찾기