mirror of https://github.com/CGAL/cgal
Bugfix: deactivate corners if bad intersection
This commit is contained in:
parent
a6b11751b1
commit
ace0238a7c
|
|
@ -1119,6 +1119,7 @@ private:
|
||||||
#ifdef CGAL_PSP3_VERBOSE
|
#ifdef CGAL_PSP3_VERBOSE
|
||||||
std::cerr << "Warning: bad plane/plane intersection" << std::endl;
|
std::cerr << "Warning: bad plane/plane intersection" << std::endl;
|
||||||
#endif
|
#endif
|
||||||
|
m_corners[i].active = false;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
@ -1129,6 +1130,7 @@ private:
|
||||||
#ifdef CGAL_PSP3_VERBOSE
|
#ifdef CGAL_PSP3_VERBOSE
|
||||||
std::cerr << "Warning: bad plane/line intersection" << std::endl;
|
std::cerr << "Warning: bad plane/line intersection" << std::endl;
|
||||||
#endif
|
#endif
|
||||||
|
m_corners[i].active = false;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue