LINUX.ORG.RU

История изменений

Исправление af5, (текущая версия) :

void setup() {
  size(480, 120);
}

void draw() {
  background(0);
  noStroke();
  for (int y = 0; y <= height; y += 40) {
    for (int x = 0; x <= width; x += 40) {
      fill(255, 140);
      ellipse(x, y, 40, 40);
    }
  }
}

Исходная версия af5, :

void setup() { size(480, 120); }

void draw() { background(0); noStroke(); for (int y = 0; y <= height; y += 40) { for (int x = 0; x <= width; x += 40) { fill(255, 140); ellipse(x, y, 40, 40); } } }