filling of polygons is working again

This commit is contained in:
hneemann 2016-04-13 14:12:11 +02:00
parent 0ffd7f1705
commit c132c7768f

View File

@ -45,6 +45,9 @@ public class GraphicSwing implements Graphic {
if (p.isClosed())
path.closePath();
if (style.isFilled())
gr.fill(path);
gr.draw(path);
}