Skip to content
Snippets Groups Projects
Commit 9f29b4b3 authored by Timo Koch's avatar Timo Koch
Browse files

[test][bboxtree] Use the new cornersMatch method in the test

parent 868724e1
No related branches found
No related tags found
1 merge request!146Feature/intersect bboxtrees
...@@ -86,11 +86,8 @@ public: ...@@ -86,11 +86,8 @@ public:
bool add = true; bool add = true;
for (const auto& i : map[is.second()]) for (const auto& i : map[is.second()])
{ {
if (intersectionsEqual(is.corners(), i)) add = !is.cornersMatch(i);
{ if (!add) break;
add = false;
break;
}
} }
if(add) if(add)
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment