X-Git-Url: http://git.kpe.io/?p=ctsim.git;a=blobdiff_plain;f=libctgraphics%2Ftransformmatrix.cpp;h=ce27a3e598e3963757465578d17aba11c4c8cc64;hp=9edf3aaf65623ea2fab61cfe2ba5adad85e4ef05;hb=c00c639073653fac7463a88f2b000f263236550d;hpb=23b7ef994fc5d95fcca6d4ae69abbd5971101262 diff --git a/libctgraphics/transformmatrix.cpp b/libctgraphics/transformmatrix.cpp index 9edf3aa..ce27a3e 100644 --- a/libctgraphics/transformmatrix.cpp +++ b/libctgraphics/transformmatrix.cpp @@ -9,7 +9,7 @@ ** This is part of the CTSim program ** Copyright (C) 1983-2000 Kevin Rosenberg ** -** $Id: transformmatrix.cpp,v 1.3 2000/12/06 01:46:43 kevin Exp $ +** $Id: transformmatrix.cpp,v 1.4 2001/01/02 16:02:13 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 @@ -25,10 +25,10 @@ ** Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ******************************************************************************/ -#include +#include #include "ctsupport.h" #include "transformmatrix.h" - + 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); - print (std::cout); + sys_error (ERR_WARNING, "Determinant = %g [TransformationMatrix2D::invert]", determ); + print (std::cout); std::cout << std::endl; }