Fix various typos
Found via codespell
This commit is contained in:
@@ -1903,7 +1903,7 @@ bool Clipper::ExecuteInternal()
|
||||
void Clipper::SetWindingCount(TEdge& edge)
|
||||
{
|
||||
TEdge* e = edge.PrevInAEL;
|
||||
// find the edge of the same polytype that immediately preceeds 'edge' in AEL
|
||||
// find the edge of the same polytype that immediately precedes 'edge' in AEL
|
||||
while (e && ((e->PolyTyp != edge.PolyTyp) || (e->WindDelta == 0))) {
|
||||
e = e->PrevInAEL;
|
||||
}
|
||||
@@ -3083,7 +3083,7 @@ void Clipper::ProcessHorizontal(TEdge* horzEdge)
|
||||
while (e) {
|
||||
|
||||
// this code block inserts extra coords into horizontal edges (in output
|
||||
// polygons) whereever maxima touch these horizontal edges. This helps
|
||||
// polygons) wherever maxima touch these horizontal edges. This helps
|
||||
//'simplifying' polygons (ie if the Simplify property is set).
|
||||
if (m_Maxima.size() > 0) {
|
||||
if (dir == dLeftToRight) {
|
||||
|
||||
Reference in New Issue
Block a user