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) {