Fix build on Mac
This commit is contained in:
parent
d1ed3d40c1
commit
e4cb75edde
1 changed files with 2 additions and 2 deletions
|
@ -1472,8 +1472,8 @@ class SLASupportTree::Algorithm {
|
|||
endp = endp - SQR2 * (gndlvl - endp(Z)) * dir; // back off
|
||||
else {
|
||||
|
||||
if (!std::isinf(bridge_mesh_intersect(endp, DOWN, radius)))
|
||||
abort_in_shame();
|
||||
auto hit = bridge_mesh_intersect(endp, DOWN, radius);
|
||||
if (!std::isinf(hit.distance())) abort_in_shame();
|
||||
|
||||
Pillar &plr = m_result.add_pillar(endp, pgnd, radius);
|
||||
|
||||
|
|
Loading…
Reference in a new issue