mirror of https://github.com/CGAL/cgal
Qualify call to CGAL::sign.
This commit is contained in:
parent
cc65b11d6d
commit
1b77180e62
|
|
@ -157,9 +157,9 @@ bool equal_not_opposite(const CGAL::Sphere_circle<R>& c1,
|
||||||
const CGAL::Sphere_circle<R>& c2) {
|
const CGAL::Sphere_circle<R>& c2) {
|
||||||
// function should be called to decide whether two circles
|
// function should be called to decide whether two circles
|
||||||
// are equal or opposites. returns true iff |c1| and |c2| are equal
|
// are equal or opposites. returns true iff |c1| and |c2| are equal
|
||||||
if(c1.a() != 0) return sign(c1.a()) == sign(c2.a());
|
if(c1.a() != 0) return CGAL::sign(c1.a()) == CGAL::sign(c2.a());
|
||||||
if(c1.b() != 0) return sign(c1.b()) == sign(c2.b());
|
if(c1.b() != 0) return CGAL::sign(c1.b()) == CGAL::sign(c2.b());
|
||||||
return sign(c1.c()) == sign(c2.c());
|
return CGAL::sign(c1.c()) == CGAL::sign(c2.c());
|
||||||
}
|
}
|
||||||
|
|
||||||
template <typename R>
|
template <typename R>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue