* gnu/java/awt/peer/gtk/GdkGraphics2D.java:
(doPolygon): set fill rule of polygon to WIND_EVEN_ODD by default From-SVN: r75971
This commit is contained in:
parent
1303d0344b
commit
f30dbd2039
2 changed files with 7 additions and 1 deletions
|
@ -776,7 +776,7 @@ public class GdkGraphics2D extends Graphics2D
|
|||
{
|
||||
if (nPoints < 1)
|
||||
return;
|
||||
GeneralPath gp = new GeneralPath ();
|
||||
GeneralPath gp = new GeneralPath (PathIterator.WIND_EVEN_ODD);
|
||||
gp.moveTo ((float)xPoints[0], (float)yPoints[0]);
|
||||
for (int i = 1; i < nPoints; i++)
|
||||
gp.lineTo ((float)xPoints[i], (float)yPoints[i]);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue