diff options
author | Johannes Hofmann <Johannes.Hofmann@gmx.de> | 2007-07-05 16:25:53 +0200 |
---|---|---|
committer | Johannes Hofmann <Johannes.Hofmann@gmx.de> | 2007-07-05 16:25:53 +0200 |
commit | 96612e4b7481d79fe05d52054578b55849a02fde (patch) | |
tree | 63dfc9cbbf4ffd2f4e3c94d1e9a43f08bb8d8b2c /src | |
parent | ff4637c54ba1b10816717ee34433e89e3d4ea30c (diff) |
remove debug output
Diffstat (limited to 'src')
-rw-r--r-- | src/Panorama.cxx | 3 | ||||
-rw-r--r-- | src/ProjectionLSQ.cxx | 2 |
2 files changed, 1 insertions, 4 deletions
diff --git a/src/Panorama.cxx b/src/Panorama.cxx index 27e4579..19bdb18 100644 --- a/src/Panorama.cxx +++ b/src/Panorama.cxx @@ -36,9 +36,6 @@ Panorama::Panorama() { view_height = 0.0; proj = NULL; set_projection(ProjectionLSQ::RECTILINEAR); - - -fprintf(stderr, "=> %f, %f\n", get_earth_radius(0.0), get_earth_radius(pi_d/2.0)); } Panorama::~Panorama() { diff --git a/src/ProjectionLSQ.cxx b/src/ProjectionLSQ.cxx index da5b3da..5da4369 100644 --- a/src/ProjectionLSQ.cxx +++ b/src/ProjectionLSQ.cxx @@ -69,7 +69,7 @@ ProjectionLSQ::comp_params(const Hills *h, ViewParams *parms) { if (distortion_correct) { lsq(h, parms, 1); } -fprintf(stderr, "===> x0 %f\n", parms->x0); + return 0; } |