--- a/src/types/matrix.cpp Thu Feb 23 20:06:22 2017 +0200 +++ b/src/types/matrix.cpp Thu Feb 23 20:18:39 2017 +0200 @@ -52,20 +52,6 @@ } /* - * Prints the matrix out. - */ -void Matrix::dump() const -{ - for (int i = 0; i < 3; ++i) - { - for (int j = 0; j < 3; ++j) - print ("%1\t", m_values[i * 3 + j]); - - print ("\n"); - } -} - -/* * Returns a string representation of the matrix */ QString Matrix::toString() const