Interface Matrix2Like

Numbers arranged into two columns and two rows.

Matrix

interface Matrix2Like {
    0: number;
    1: number;
    2: number;
    3: number;
}

Hierarchy (view full)

Implemented by

Properties

0 1 2 3

Properties

0: number

The value in the first column and first row.

1: number

The value in the first column and second row.

2: number

The value in the second column and first row.

3: number

The value in the second column and second row.