Corrected an error in the fringe area calculation that was supposed
to be ignoring geometry outside the area of the halo, but wasn't.
This commit is contained in:
parent
bbcc05c004
commit
8d985ea766
|
|
@ -708,7 +708,7 @@ extAddCouple(bp, ecs)
|
|||
|
||||
GEOCLIP(&bp->b_segment, extCoupleSearchArea);
|
||||
|
||||
if ((bp->b_segment.r_ytop <= bp->b_segment.r_ybot) &&
|
||||
if ((bp->b_segment.r_ytop <= bp->b_segment.r_ybot) ||
|
||||
(bp->b_segment.r_xtop <= bp->b_segment.r_xbot))
|
||||
return 0;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue