public void drawCells(Graphics g, Cells cells) {
    Cell[] c = cells.getCells();

    for (int i = 0; i < cells.getFilled(); i++) {
      drawCircle(g, c[i].posX, c[i].posY, c[i].radian, cells.getColor());
    }
  }