7
とは何ですか?グラフィックとGraphics2Dの違いは何ですか?
Graphics2DがGraphicsの拡張版ですか?グラフィックスとGraphics2Dの違いは?
public void paintComponent(Graphics g)
{
super.paintComponent(g);
g.drawRect(25, 25, 20, 20); //use Graphics to paint rectangle
Graphics2D g2 =(Graphics2D)g;
g2.drawRect(0, 0, 20, 20); // use Graphics2D to paint rectangle
}
実際にはAffineTransformクラスのメソッドを持つGraphicsクラスです。 –