Skip to content

Commit e8cc6a3

Browse files
committed
fix formating
1 parent 32d5793 commit e8cc6a3

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

include/delaunator.hpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -505,8 +505,7 @@ std::size_t Delaunator::hash_key(double x, double y) {
505505
const double dx = x - m_center_x;
506506
const double dy = y - m_center_y;
507507
return static_cast<std::size_t>(std::llround(
508-
std::floor(pseudo_angle(dx, dy) * static_cast<double>(m_hash_size))
509-
));
508+
std::floor(pseudo_angle(dx, dy) * static_cast<double>(m_hash_size))));
510509
}
511510

512511
void Delaunator::hash_edge(std::size_t e) {

0 commit comments

Comments
 (0)