Rotate

rotate() #

π/2 clockwise rotation of the quadrille cells.

Example #

(mouse click or press any key to rotate the quadrille)

code
let quadrille;

function setup() {
  createCanvas(4 * Quadrille.cellLength, 4 * Quadrille.cellLength);
  quadrille = createQuadrille(4, 4, 3, '🚀');
  quadrille.rand(4, '🐒');
}

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

function mouseClicked() {
  quadrille.rotate();  
}

function keyPressed() {
  quadrille.rotate();
}

Syntax #

rotate()