mirror of https://github.com/CGAL/cgal
bugfix
This commit is contained in:
parent
b090cd8c22
commit
f68692bf58
|
|
@ -790,7 +790,7 @@ public:
|
||||||
|
|
||||||
eps = 1.99986535548615598560e-15 * (std::max)((std::max)(ssr, dx), (std::max)(dy, dz));
|
eps = 1.99986535548615598560e-15 * (std::max)((std::max)(ssr, dx), (std::max)(dy, dz));
|
||||||
|
|
||||||
distance = dx + dy + dz - ssr;
|
distance = ssr - dx - dy - dz;
|
||||||
|
|
||||||
// Is the box fully contained in the sphere?
|
// Is the box fully contained in the sphere?
|
||||||
if (distance > eps)
|
if (distance > eps)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue