menu
Flutter
vector_math_64
Matrix2
index method
index
brightness_4
brightness_5
index
method
int
index
(
int
row
,
int
col
)
Return index in storage for
row
,
col
value.
Implementation
int index(int row, int col) => (col * 2) + row;
Flutter
vector_math_64
Matrix2
index method
Matrix2 class