setMatrix method

void setMatrix(
  1. int index,
  2. dynamic src, [
  3. bool moveFlag = false
])

Implementation

void setMatrix( int index, dynamic src, [bool moveFlag = false] ){
	if( moveFlag ){
		move( index );
	}
	_mat[index].ass( src );
}