257258259260261262263
return points; } public Graphics2D createGraphics() { return new BufferedImageGraphics2D(this); }
37383940414243
*/ public abstract class CommonGraphicsEnvironment extends GraphicsEnvironment { @Override public Graphics2D createGraphics(BufferedImage bufferedImage) { return new BufferedImageGraphics2D(bufferedImage); }
35363738394041
39404142434445