We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f5e16f5 + 7d359f0 commit 8b82be0Copy full SHA for 8b82be0
LibTessDotNet/Sources/Tess.cs
@@ -567,8 +567,9 @@ private void OutputContours()
567
vertCount = 0;
568
start = edge = f._anEdge;
569
do {
570
- _vertices[vertIndex++].Position = edge._Org._coords;
571
- _vertices[vertIndex++].Data = edge._Org._data;
+ _vertices[vertIndex].Position = edge._Org._coords;
+ _vertices[vertIndex].Data = edge._Org._data;
572
+ ++vertIndex;
573
++vertCount;
574
edge = edge._Lnext;
575
} while (edge != start);
0 commit comments