geometry: missing return in SEG::Contains()

This commit is contained in:
Tomasz Wlostowski 2020-02-19 18:38:31 +01:00
parent c2d95a00c1
commit a42b86d3ac
1 changed files with 1 additions and 0 deletions

View File

@ -300,6 +300,7 @@ public:
return false;
if( Contains( aSeg.A ) && Contains( aSeg.B ) )
return true;
return false;
}