我试图旋转用
创建的Rectangle
(Java类)
Rectangle rect = new Rectangle(x, y, width, height);
我似乎无法在API中找到任何内容。如果我google" Java旋转一个矩形",那么我只能找到线程告诉我如何绘制它旋转,而不只是旋转对象。
答案 0 :(得分:3)
AffineTransform.getRotateInstance(angle).createTransformedShape(rect)
创建一个表示旋转矩形的Shape。 (它不能返回另一个Rectangle
,因为Rectangle
期望沿着x / y轴直线。)