Hi I’m trying to draw something out of viewing area, but somehow things outside of Canvas bound will not be drawed. Is there anyway I can still draw those? I need to copy the image there and be able to move it around… Any ideas?
Ex:
Graphics2D g = (Graphics2D) strategy.getDrawGraphics();
g.setColor(Color.BLACK);
g.fillRect(-800, -600, 800, 600);
— other drawings
g.copyArea(-800, -600, 800, 600, 800, 600);