insert(row)

Inserts an empty row into the quadrille.

Example

(click any row; press any key to reset)

code
Quadrille.cellLength = 20;
let quadrille;

function setup() {
  createCanvas(400, 400);
  reset();
}

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

function mouseClicked() {
  quadrille.insert(quadrille.mouseRow);
}

function keyPressed() {
  reset();
}

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

Syntax

insert(row)

Parameters

ParamDescription
rowNumber: number of the row to be inserted [0..height]]