r243: *** empty log message ***
[ctsim.git] / libctgraphics / transformmatrix.cpp
index 12c51926491d68f3cc7688e3b8cef57bb03944b1..7e3c73d91b2500f0e95e65016e45e0bfa9f6abbb 100644 (file)
@@ -9,7 +9,7 @@
 **  This is part of the CTSim program
 **  Copyright (C) 1983-2000 Kevin Rosenberg
 **
-**  $Id: transformmatrix.cpp,v 1.1 2000/07/28 08:28:08 kevin Exp $
+**  $Id: transformmatrix.cpp,v 1.2 2000/12/04 04:44:02 kevin Exp $
 **
 **  This program is free software; you can redistribute it and/or modify
 **  it under the terms of the GNU General Public License (version 2) as
 **  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 ******************************************************************************/
 
+#include <iostream>\r
 #include "ctsupport.h"
 #include "transformmatrix.h"
-#include <iostream>
-
+\r
 
 TransformationMatrix2D::TransformationMatrix2D (double m[3][3])
 {
@@ -92,9 +92,9 @@ TransformationMatrix2D::invert () const
 
   double determ = determinant ();
   if (fabs(determ) < 1E-6) {
-    sys_error (ERR_WARNING, "Determinant = %g [TransformationMatrix2D::invert]", determ);
-    print (cout);
-    cout << endl;
+    sys_error (ERR_WARNING, "Determinant = %g [TransformationMatrix2D::invert]", determ);\r
+       print (cout);\r
+       cout << endl;
   }
 
   b[0][0] =  (mtx[1][1] * mtx[2][2] - mtx[2][1] * mtx[1][2]) / determ;