X-Git-Url: http://git.kpe.io/?p=ctsim.git;a=blobdiff_plain;f=libctsim%2Fscanner.cpp;h=57babad0c0cfa4387d512233acf3f3d88afee7fc;hp=6747ea030d59da2f3a1b80876d0ea544c648c53c;hb=3d52fe3684ae9f5bf411c6ec4476381932ca6d00;hpb=52b5db7fecd29a8ffe42c53e4e27fd2a698075bb diff --git a/libctsim/scanner.cpp b/libctsim/scanner.cpp index 6747ea0..57babad 100644 --- a/libctsim/scanner.cpp +++ b/libctsim/scanner.cpp @@ -9,7 +9,7 @@ ** This is part of the CTSim program ** Copyright (c) 1983-2001 Kevin Rosenberg ** -** $Id: scanner.cpp,v 1.42 2002/06/20 08:22:48 kevin Exp $ +** $Id: scanner.cpp,v 1.43 2003/04/01 19:49:41 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 @@ -32,12 +32,14 @@ const int Scanner::GEOMETRY_INVALID = -1; const int Scanner::GEOMETRY_PARALLEL = 0; const int Scanner::GEOMETRY_EQUIANGULAR = 1; const int Scanner::GEOMETRY_EQUILINEAR = 2; +const int Scanner::GEOMETRY_LINOGRAM = 3; const char* Scanner::s_aszGeometryName[] = { {"parallel"}, {"equiangular"}, {"equilinear"}, + {"linogram"}, }; const char* Scanner::s_aszGeometryTitle[] = @@ -45,6 +47,7 @@ const char* Scanner::s_aszGeometryTitle[] = {"Parallel"}, {"Equiangular"}, {"Equilinear"}, + {"Linogram"}, }; const int Scanner::s_iGeometryCount = sizeof(s_aszGeometryName) / sizeof(const char*);