clear(row, col, border)

Clears a specific cell and all connected cells in the quadrille using a flood fill algorithm. The border parameter determines if the clearing includes the boundary of the flood fill area.

Example

(click on any cell to perform flood fill with selected border option; press any key to reset)

code
Quadrille.cellLength = 20;
let quadrille;
let mode;

function setup() {
  createCanvas(400, 400);
  mode = createSelect();
  mode.option('flood fill without border');
  mode.option('flood fill with border');
  mode.selected('flood fill without border');
  reset();
}

function draw() {
  background('black');
  drawQuadrille(quadrille);
}

function mouseClicked() {
  const row = quadrille.mouseRow;
  const col = quadrille.mouseCol;
  const border = mode.value() === 'flood fill with border';
  quadrille.clear(row, col, 4, border);
}

function keyPressed() {
  reset();
}

function reset() {
  quadrille = createQuadrille(20, 20, 100, color('red'));
  quadrille.rand(100, color('lime')).rand(100, color('blue'));
}

Syntax

clear(row, col, border)

Parameters

ParamDescription
rowNumber: row index of the cell to start clearing [0..height]
colNumber: column index of the cell to start clearing [0..width]
borderBoolean: Specifies whether to include the border of the flood fill area. Default is false