Specify namespace to avoid calling global functions

This commit is contained in:
Mael Rouxel-Labbé 2021-01-29 18:56:36 +01:00
parent 959bf3ba46
commit c1fc62ef14
1 changed files with 1 additions and 1 deletions

View File

@ -313,7 +313,7 @@ side_of_oriented_circle(const Point& p0, const Point& p1, const Point& p2, const
bool perturb) const bool perturb) const
{ {
// Specificity of the ToS_2: the in-circle is a call to orientation_3 // Specificity of the ToS_2: the in-circle is a call to orientation_3
Oriented_side os = orientation(p0, p1, p2, p); Oriented_side os = Base::orientation(p0, p1, p2, p);
if(os != ON_ORIENTED_BOUNDARY || !perturb) if(os != ON_ORIENTED_BOUNDARY || !perturb)
return os; return os;