From 1f75426cd8e51cbfc46424d643219a0d06b8e1c1 Mon Sep 17 00:00:00 2001 From: Victor Date: Sun, 2 Mar 2014 19:31:27 +0200 Subject: [PATCH] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=BB=D0=B5?= =?UTF-8?q?=D0=BD=20=D0=BC=D0=B5=D1=82=D0=BE=D0=B4=20setColor?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/com/annimon/graphics/GraphicsExt.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/com/annimon/graphics/GraphicsExt.java b/src/com/annimon/graphics/GraphicsExt.java index 29c3e36..1ee2ef8 100644 --- a/src/com/annimon/graphics/GraphicsExt.java +++ b/src/com/annimon/graphics/GraphicsExt.java @@ -41,6 +41,10 @@ public class GraphicsExt { else clip = new Clip(x, y, width, height); } + public void setColor(Color color) { + g.setColor(color); + } + public void move(double x, double y) { old.setX(x); old.setY(y);