Returns the first cell of a grid.
For uniform grids, this is simply { x: 0, y: 0 }.
{ x: 0, y: 0 }
For jagged grids returns first cell in a row with cols.
{ rows: [0, 2, 3] }0 12 3 4 Copy
{ rows: [0, 2, 3] }0 12 3 4
See also firstCellColumnwise
Returns the first cell of a grid.
For uniform grids, this is simply
{ x: 0, y: 0 }.For jagged grids returns first cell in a row with cols.
See also firstCellColumnwise