getMatrixEntries method

List<double> getMatrixEntries()

Gets an array containing the entries of the transformation matrix. Only the 6 non-trivial entries are returned, in the sequence:

m00, m01, m02, m10, m11, m12

@return an array of length 6

Implementation

List<double> getMatrixEntries() {
  return [m00, m01, m02, m10, m11, m12];
}