- 350 名前:hage [2008/02/16(土) 13:00:11 ]
- public void paint(Graphics g){
if (offs == null){ offs = createImage(getWidth(), getHeight()); Graphics g2 = offs.getGraphics(); g2.setColor(Color.BLUE); g2.fillRect(0, 0, getWidth(), getHeight()); g2.setColor(Color.RED); if (mp != null) g2.fillOval(mp.x - 2, mp.y - 2, 4, 4); cb.repaint(); } g.drawImage(offs, 0, 0, null); } public static void main(String[] args){ new Test(); } }
|

|