Array Mutable Matrix
Create a matrix that is initialized with a single value.
Parameters
width
The width of the matrix
height
The (initial) height of the matrix
init Value
The initial value for each cell
Create a matrix by copying the original matrix. Note that this doesn't do a deep copy (copy the value objects).
Parameters
original
The matrix to copy from.