diff options
Diffstat (limited to 'src/Stitch.cxx')
-rw-r--r-- | src/Stitch.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Stitch.cxx b/src/Stitch.cxx index f378747..7e8f909 100644 --- a/src/Stitch.cxx +++ b/src/Stitch.cxx @@ -78,12 +78,12 @@ Stitch::set_output(const char *file, OutputImage *img) { int Stitch::resample(int w, int h, - double view_start, double view_end) { + double view_start, double view_end) { double step_view = (view_end - view_start) / w; char r, g, b; int y_off = h / 2; int merged_pixel_set; - double radius = (double) w / (view_end -view_start); + double radius = (double) w / (view_end -view_start); if (merged_image) { merged_image->init(w, h); |