Skip to content

Commit

Permalink
fix formating
Browse files Browse the repository at this point in the history
  • Loading branch information
delfrrr committed Sep 18, 2018
1 parent 32d5793 commit e8cc6a3
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions include/delaunator.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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::size_t>(std::llround(
std::floor(pseudo_angle(dx, dy) * static_cast<double>(m_hash_size))
));
std::floor(pseudo_angle(dx, dy) * static_cast<double>(m_hash_size))));
}

void Delaunator::hash_edge(std::size_t e) {
Expand Down

0 comments on commit e8cc6a3

Please sign in to comment.