r7061: initial property settings
[ctsim.git] / libctgraphics / transformmatrix.cpp
index 9edf3aaf65623ea2fab61cfe2ba5adad85e4ef05..912226ef4a08e5a6b4c68c4acb87277ea6f4e8e5 100644 (file)
@@ -7,9 +7,9 @@
 **     Date Started:   1-22-85
 **
 **  This is part of the CTSim program
-**  Copyright (C) 1983-2000 Kevin Rosenberg
+**  Copyright (c) 1983-2001 Kevin Rosenberg
 **
-**  $Id: transformmatrix.cpp,v 1.3 2000/12/06 01:46:43 kevin Exp $
+**  $Id$
 **
 **  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 <iostream>
 #include "ctsupport.h"
 #include "transformmatrix.h"
-\r
+
 
 TransformationMatrix2D::TransformationMatrix2D (double m[3][3])
 {
@@ -92,8 +92,8 @@ TransformationMatrix2D::invert () const
 
   double determ = determinant ();
   if (fabs(determ) < 1E-6) {
-    sys_error (ERR_WARNING, "Determinant = %g [TransformationMatrix2D::invert]", determ);\r
-       print (std::cout);\r
+    sys_error (ERR_WARNING, "Determinant = %g [TransformationMatrix2D::invert]", determ);
+       print (std::cout);
        std::cout << std::endl;
   }