Fix typo in triangulation return
This commit is contained in:
parent
00d108498f
commit
a793fa8b17
|
@ -578,7 +578,7 @@ private:
|
||||||
* At this point, our polygon should be fully tessellated.
|
* At this point, our polygon should be fully tessellated.
|
||||||
*/
|
*/
|
||||||
if( aPoint->prev != aPoint->next )
|
if( aPoint->prev != aPoint->next )
|
||||||
return std::abs( aPoint->area() > ADVANCED_CFG::GetCfg().m_TriangulateMinimumArea );
|
return std::abs( aPoint->area() ) > ADVANCED_CFG::GetCfg().m_TriangulateMinimumArea;
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue