drawQuadrille(args)

The drawQuadrille function is used to render a quadrille onto the canvas or a specified graphics buffer. It provides various parameters for customizing the appearance and behavior of the drawn quadrille, including cell dimensions, colors, and display styles.

By default, drawQuadrille(quadrille) is sufficient for most cases where no custom display parameters are needed, as it uses the quadrille’s default properties for rendering. For more advanced use cases, drawQuadrille(quadrille, { options }) allows you to specify optional display parameters, such as cellLength, outline, textColor, and more, to customize the rendering behavior.

Configuration

The drawQuadrille function simplifies customization by using its { options } object literal parameter, leveraging JavaScript object destructuring to extract values directly. This approach makes function calls more readable, flexible, and maintainable, allowing you to configure only the parameters you need while relying on defaults for the rest.

Example

drawQuadrille(quadrille, {
  cellLength: 50,   // Custom size for each cell
  outline: 'blue',  // Edge color of the quadrille
  outlineWeight: 2, // Line thickness for the outline
  textColor: 'white', // Color for text inside cells
  textZoom: 0.5,    // Scale the text in cells
});

In this example, only these parameters are explicitly configured:

  • cellLength: Specifies the size of each cell in pixels.
  • outline: Sets the edge color of the quadrille.
  • outlineWeight: Defines the thickness of the outline.
  • textColor: Controls the color of any text rendered in the quadrille cells.
  • textZoom: Scales the size of the text rendered in the cells.

The remaining parameters in the { options } object use their default values, making it easier to adjust specific aspects of the quadrille’s rendering without needing to pass every option explicitly.

ℹ️

JavaScript object destructuring allows extracting values directly from objects, improving code clarity and ease of use. This approach provides several benefits:

  1. Clarity: Parameters are grouped into a single, descriptive object, making function calls easier to read.
  2. Flexibility: Only the parameters you need are specified, while defaults handle the rest.
  3. Order Independence: Parameters are assigned based on their names, so their order doesn’t matter.
  4. Extensibility: New parameters can be added without breaking existing function calls.

Syntax

drawQuadrille(quadrille, [{[cellLength], [outline], [outlineWeight], [textColor], [textZoom], [textFont], [x], [y], [row], [col], [values], [graphics], [origin], [tileDisplay], [stringDisplay], [numberDisplay], [colorDisplay], [imageDisplay], [functionDisplay], [arrayDisplay], [objectDisplay]}])

Parameters

paramdescription
quadrilleQuadrille: The quadrille to be drawn
cellLengthNumber: Edge length in pixels. Default is Quadrille.cellLength
outlinep5.Color: Edge color. Default is Quadrille.outline
outlineWeightNumber: Edge weight. Default is Quadrille.outlineWeight
textColorp5.Color: Text color. Default is Quadrille.textColor
textZoomNumber: Text zoom level. Default is Quadrille.textZoom
textFontp5.Font: Specifies the font used for rendering text in cells. Default is the current p5.js font
xNumber: Upper-left quadrille pixel x-coordinate. Default is 0. Takes precedence over col
yNumber: Upper-left quadrille pixel y-coordinate. Default is 0. Takes precedence over row
rowNumber: Upper-left quadrille row. Default is 0
colNumber: Upper-left quadrille column. Default is 0
valuesIterable: Cells to be drawn. All cells are drawn if this parameter is undefined
graphicsp5.Graphics: Renderer target. Default is this (main canvas)
originConstant: Defines the reference point for drawing the quadrille. CORNER aligns it to the top-left corner of the canvas (default in P2D), and CENTER aligns it to the center of the canvas (default in WEBGL)
tileDisplay1Function: Renders cell contours. Default is Quadrille.tileDisplay
stringDisplayFunction: Renders strings in cells. Default is Quadrille.stringDisplay
numberDisplayFunction: Renders numbers in cells as grayscale values. Default is Quadrille.numberDisplay
colorDisplayFunction: Renders colors in cells. Default is Quadrille.colorDisplay
imageDisplayFunction: Renders images in cells. Default is Quadrille.imageDisplay
functionDisplayFunction: Renders functions in cells, available only in WEBGL. Default is Quadrille.functionDisplay
arrayDisplayFunction: Renders cells filled with arrays. No static default provided
objectDisplayFunction: Renders cells filled with objects. No static default provided

  1. The tileDisplay parameter allows implementing other regular tilings beyond the default square tiling↩︎