src/types/matrix.cpp

changeset 1159
6ad8cdcd88d9
parent 1151
0eddb5bcf25b
child 1326
69a90bd2dba2
--- 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

mercurial