mirror of https://github.com/CGAL/cgal
remove useless certainly
will fail a few lines below anyway
This commit is contained in:
parent
f6f2b28b0e
commit
f7fa358585
|
|
@ -242,8 +242,8 @@ do_intersect_with_info(const typename K::Segment_2 &seg1,
|
||||||
typename K::Compare_xy_2 compare_xy;
|
typename K::Compare_xy_2 compare_xy;
|
||||||
|
|
||||||
// first try to filter using the bbox of the segments
|
// first try to filter using the bbox of the segments
|
||||||
if (certainly(less_xy(A2,B1))
|
if (less_xy(A2,B1)
|
||||||
|| certainly(less_xy(B2,A1)))
|
|| less_xy(B2,A1))
|
||||||
return S2S2_inter_info(false);
|
return S2S2_inter_info(false);
|
||||||
|
|
||||||
switch(make_certain(compare_xy(A1,B1))) {
|
switch(make_certain(compare_xy(A1,B1))) {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue