Optimization for when point is found in a hole

This commit is contained in:
Blake Thompson 2015-04-02 17:03:40 -05:00
parent ecbacc5933
commit 4091504dac

View file

@ -119,6 +119,10 @@ struct hit_test_visitor
inside=!inside;
}
}
if (!inside)
{
return false;
}
}
return inside;
}