2D offset coordinates of a grid space.

interface GridOffset2D {
    i: number;
    j: number;
}

Properties

i j

Properties

i: number

The row coordinate (an integer)

j: number

The column coordinate (an integer)