From e8cc6a3b60457304de34e0fdb97036f37526c969 Mon Sep 17 00:00:00 2001 From: Vova Bilonenko Date: Tue, 18 Sep 2018 08:52:56 +0200 Subject: [PATCH] fix formating --- include/delaunator.hpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/include/delaunator.hpp b/include/delaunator.hpp index 1d01cb5..b5ef4b9 100644 --- a/include/delaunator.hpp +++ b/include/delaunator.hpp @@ -505,8 +505,7 @@ std::size_t Delaunator::hash_key(double x, double y) { const double dx = x - m_center_x; const double dy = y - m_center_y; return static_cast(std::llround( - std::floor(pseudo_angle(dx, dy) * static_cast(m_hash_size)) - )); + std::floor(pseudo_angle(dx, dy) * static_cast(m_hash_size)))); } void Delaunator::hash_edge(std::size_t e) {