We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c8313ea commit bf1ea6dCopy full SHA for bf1ea6d
include/delaunator.cpp
@@ -196,8 +196,8 @@ Delaunator::Delaunator(std::vector<double> const& in_coords)
196
m_edge_stack() {
197
std::size_t n = coords.size() >> 1;
198
199
- double max_x = (std::numeric_limits<double>::min)();
200
- double max_y = (std::numeric_limits<double>::min)();
+ double max_x = std::numeric_limits<double>::lowest();
+ double max_y = std::numeric_limits<double>::lowest();
201
double min_x = (std::numeric_limits<double>::max)();
202
double min_y = (std::numeric_limits<double>::max)();
203
std::vector<std::size_t> ids;
0 commit comments