A body region defined by the cells' boundaries using row/column coordinates.

interface IBodyRegion {
    firstColumn: number;
    firstRow: number;
    lastColumn: number;
    lastRow: number;
}

Properties

firstColumn: number

First column of the region

firstRow: number

First row of the region

lastColumn: number

Last column of the region

lastRow: number

Last row of the region