Merge pull request #1953 from ledvinap/fix-clipper-1834
Apply bug fix from upstream clipper. Fixes #1834
This commit is contained in:
commit
1fc76b73a4
1 changed files with 14 additions and 4 deletions
|
@ -1030,10 +1030,20 @@ TEdge* ClipperBase::ProcessBound(TEdge* E, bool IsClockwise)
|
||||||
cInt StartX;
|
cInt StartX;
|
||||||
if (IsHorizontal(*E))
|
if (IsHorizontal(*E))
|
||||||
{
|
{
|
||||||
//it's possible for adjacent overlapping horz edges to start heading left
|
//first we need to be careful here with open paths because this
|
||||||
//before finishing right, so ...
|
//may not be a true local minima (ie may be following a skip edge).
|
||||||
if (IsClockwise) StartX = E->Prev->Bot.X;
|
//also, watch for adjacent horz edges to start heading left
|
||||||
else StartX = E->Next->Bot.X;
|
//before finishing right ...
|
||||||
|
if (IsClockwise)
|
||||||
|
{
|
||||||
|
if (E->Prev->Bot.Y == E->Bot.Y) StartX = E->Prev->Bot.X;
|
||||||
|
else StartX = E->Prev->Top.X;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
if (E->Next->Bot.Y == E->Bot.Y) StartX = E->Next->Bot.X;
|
||||||
|
else StartX = E->Next->Top.X;
|
||||||
|
}
|
||||||
if (E->Bot.X != StartX) ReverseHorizontal(*E);
|
if (E->Bot.X != StartX) ReverseHorizontal(*E);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue