diff options
-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; } |