已知 Graphics 对象 g,获得 Graphics2D 对象 g2
16 查阅
已知 Graphics 对象 g,获得 Graphics2D 对象 g2d,然后, 用圆角长方形类创建对象 circle,该对象的左上角坐标是(30,40),半径是 50。请写出实现以上要求的 Java代 码。
参考答案:
Graphics2D g2d = (Graphics2D)g;RoundRectangle2D circle = new RoundRectangle2D.Double(30,40,100,100,100);