fix comparison

This commit is contained in:
Sébastien Loriot 2021-02-09 17:51:01 +01:00
parent 6d438a0f94
commit fb731259d7
1 changed files with 1 additions and 1 deletions

View File

@ -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));