From d0b5ba3862d15147172c420bdcf14f0b2c064c9c Mon Sep 17 00:00:00 2001 From: Dane Springmeyer Date: Tue, 26 Apr 2016 16:51:12 -0700 Subject: [PATCH] use std::fabs instead of clib fabs --- geometry.cc | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/geometry.cc b/geometry.cc index 6a4efbe..ac4e9f7 100644 --- a/geometry.cc +++ b/geometry.cc @@ -4,15 +4,15 @@ #include #include #include -#include +#include #include -#include -#include -#include +#include +#include #include "geometry.hh" #include "clipper/clipper.hpp" extern "C" { +#include #include "tile.h" #include "clip.h" #include "projection.h" @@ -246,7 +246,7 @@ struct ring { } bool operator<(const ring &o) const { - if (fabs(this->area) < fabs(o.area)) { + if (std::fabs(this->area) < std::fabs(o.area)) { return true; } else { return false; @@ -811,7 +811,7 @@ drawvec reduce_tiny_poly(drawvec &geom, int z, int detail, bool *reduced, double // inner rings must just have their area de-accumulated rather // than being drawn since we don't really know where they are. - if (fabs(area) <= pixel * pixel || (area < 0 && !included_last_outer)) { + if (std::fabs(area) <= pixel * pixel || (area < 0 && !included_last_outer)) { // printf("area is only %f vs %lld so using square\n", area, pixel * pixel); *accum_area += area; @@ -1012,7 +1012,7 @@ static void douglas_peucker(drawvec &geom, int start, int n, double e) { for (i = first + 1; i < second; i++) { double temp_dist = square_distance_from_line(geom[start + i].x, geom[start + i].y, geom[start + first].x, geom[start + first].y, geom[start + second].x, geom[start + second].y); - double distance = fabs(temp_dist); + double distance = std::fabs(temp_dist); if (distance > e && distance > max_distance) { farthest_element_index = i;