mirror of https://github.com/CGAL/cgal
fix comparison
This commit is contained in:
parent
6d438a0f94
commit
fb731259d7
|
|
@ -125,7 +125,7 @@ intersection(
|
|||
{
|
||||
all_in = false;
|
||||
// check for intersection of the edge
|
||||
if (orientations[next_id] != ON_NEGATIVE_SIDE)
|
||||
if (orientations[next_id] == ON_NEGATIVE_SIDE)
|
||||
{
|
||||
ids.push_back(
|
||||
inter_pt_index<K>(current_id, next_id, plane, corners, id_map));
|
||||
|
|
|
|||
Loading…
Reference in New Issue