Update to 6.4.0.

This commit is contained in:
Lukáš Hejl 2024-03-26 15:04:16 +01:00 committed by Lukas Matena
parent a47101764b
commit fa34a51712
2 changed files with 10 additions and 5 deletions

View File

@ -1,8 +1,8 @@
/*******************************************************************************
* *
* Author : Angus Johnson *
* Version : 6.3.0 *
* Date : 19 April 2015 *
* Version : 6.4.0 *
* Date : 2 July 2015 *
* Website : http://www.angusj.com *
* Copyright : Angus Johnson 2010-2015 *
* *
@ -1528,7 +1528,12 @@ void Clipper::InsertLocalMinimaIntoAEL(const cInt botY)
if (rb)
{
if(IsHorizontal(*rb)) AddEdgeToSEL(rb);
if (IsHorizontal(*rb))
{
AddEdgeToSEL(rb);
if (rb->NextInLML)
m_Scanbeam.push(rb->NextInLML->Top.y());
}
else m_Scanbeam.push(rb->Top.y());
}

View File

@ -1,8 +1,8 @@
/*******************************************************************************
* *
* Author : Angus Johnson *
* Version : 6.3.0 *
* Date : 19 April 2015 *
* Version : 6.4.0 *
* Date : 2 July 2015 *
* Website : http://www.angusj.com *
* Copyright : Angus Johnson 2010-2015 *
* *