Fix typo in triangulation return
(cherry picked from commit a793fa8b17
)
This commit is contained in:
parent
1cc10be443
commit
ff2d0cfb10
|
@ -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