X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=src%2Fdlgprojections.cpp;h=e2d3a4402e4ce76dbfa61bcb16d8d3bea01c5182;hb=82ea0c94394a5a175b260160760155a6686203a1;hp=d340914efbb07424ac7bab15a599c0f02cbf6758;hpb=c8ec665dde5df59539daf63e0a6a44f27550258b;p=ctsim.git diff --git a/src/dlgprojections.cpp b/src/dlgprojections.cpp index d340914..e2d3a44 100644 --- a/src/dlgprojections.cpp +++ b/src/dlgprojections.cpp @@ -7,9 +7,9 @@ ** Date Started: August 2000 ** ** This is part of the CTSim program -** Copyright (C) 1983-2000 Kevin Rosenberg +** Copyright (c) 1983-2001 Kevin Rosenberg ** -** $Id: dlgprojections.cpp,v 1.17 2001/01/17 06:38:06 kevin Exp $ +** $Id: dlgprojections.cpp,v 1.22 2001/01/30 05:05: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 @@ -107,7 +107,7 @@ ProjectionsDialog::ProjectionsDialog (Scanner& rScanner, Projections& rProj, con SetAutoLayout(TRUE); Layout(); - wxSize sizeDlg (250,250); + wxSize sizeDlg (500,500); if (sizeDlg.x != sizeDlg.y) { sizeDlg.x = max(sizeDlg.x,sizeDlg.y); sizeDlg.y = max(sizeDlg.x,sizeDlg.y); @@ -168,8 +168,18 @@ ProjectionsDialog::showView (int iViewNumber) ezplot.ezset ("grid"); ezplot.ezset ("box"); ezplot.ezset ("yticks left"); + ezplot.ezset ("xticks major 5"); + ezplot.ezset ("yticks major 10"); ezplot.addCurve (detValues, detPos, detArray.nDet()); +#if 1 + ezplot.ezset ("xporigin 0.67"); + ezplot.ezset ("yporigin 0.10"); + ezplot.ezset ("xlength 0.33"); + ezplot.ezset ("ylength 0.90"); + m_pSGP->setViewport (0., 0., 1., 1.); +#else m_pSGP->setViewport (0.67, 0.1, 1., 1.); +#endif ezplot.plot (m_pSGP); delete detPos; }