fixed has_on_unbounded_side in Iso_cuboid_3.C

This commit is contained in:
Mariette Yvinec 2000-03-29 06:49:36 +00:00
parent 5ca202dadd
commit 2363ed086f
1 changed files with 1 additions and 2 deletions

View File

@ -231,8 +231,7 @@ bool
Iso_cuboidC3<R CGAL_CTAG>::
has_on_unbounded_side(const Iso_cuboidC3<R CGAL_CTAG>::Point_3& p) const
{
return lexicographically_xyz_smaller(p,min())
|| lexicographically_xyz_smaller(max(),p);
return bounded_side(p) == ON_UNBOUNDED_SIDE;
}
template < class R >