Commit f30dbd20 by Olga Rodimina Committed by Olga Rodimina

* gnu/java/awt/peer/gtk/GdkGraphics2D.java:

	(doPolygon): set fill rule of polygon to
	WIND_EVEN_ODD by default

From-SVN: r75971
parent 1303d034
2004-01-16  Olga Rodimina <rodimina@redhat.com>
* gnu/java/awt/peer/gtk/GdkGraphics2D.java:
(doPolygon): set fill rule of polygon to
WIND_EVEN_ODD by default.
2004-01-15 Olga Rodimina <rodimina@redhat.com>
* gnu/java/awt/peer/gtk/GdkGraphics2D.java:
......
......@@ -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]);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment