insertCell method

void insertCell(
  1. int x,
  2. int y,
  3. int n,
  4. Cell? cell,
)

Inserts n cells at (x,y) within full bounds (ansi ICH semantics).

Upstream: third_party/ultraviolet/buffer.go (InsertCell).

Implementation

void insertCell(int x, int y, int n, Cell? cell) =>
    insertCellArea(x, y, n, cell, bounds());