From: Kevin M. Rosenberg Date: Mon, 31 Jul 2000 23:07:23 +0000 (+0000) Subject: r167: *** empty log message *** X-Git-Tag: debian-4.5.3-3~850 X-Git-Url: http://git.kpe.io/?p=ctsim.git;a=commitdiff_plain;h=577de4ac906cfd4215f2c6e79e21bcceed321401 r167: *** empty log message *** --- diff --git a/src/views.cpp b/src/views.cpp index 077b9db..7f12594 100644 --- a/src/views.cpp +++ b/src/views.cpp @@ -9,7 +9,7 @@ ** This is part of the CTSim program ** Copyright (C) 1983-2000 Kevin Rosenberg ** -** $Id: views.cpp,v 1.11 2000/07/31 14:48:35 kevin Exp $ +** $Id: views.cpp,v 1.12 2000/07/31 23:07:23 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 @@ -405,7 +405,21 @@ PhantomView::OnProjections (wxCommandEvent& event) Projections& rProj = pProjectionDoc->getProjections(); Scanner theScanner (rPhantom, sGeometry.c_str(), nDet, nView, nSamples, dRotAngle); rProj.initFromScanner (theScanner); - theScanner.collectProjections (rProj, rPhantom, 0, TRACE_NONE); + +#if 1 + //wxScrolledWindow win (m_canvas, -1, wxDefaultPosition, wxSize(500,500), 0); + //win.SetSize (500, 500); + // wxClientDC dc (&win); + //win.PrepareDC (); + //win.Show(); + wxClientDC dc (m_canvas); + SGPDriver driver ((wxDC*) &dc, "Projections", 400, 400); + SGP sgp (driver); + theScanner.collectProjections (rProj, rPhantom, 0, TRACE_PHM, &sgp); +#else + theScanner.collectProjections (rProj, rPhantom, 0, TRACE_PHM); +#endif + pProjectionDoc->Modify(true); pProjectionDoc->UpdateAllViews(this); ostringstream os;