我正在尝试将红色六边形重新定位到下图中黑色箭头指向的矩形的中心。
我找不到放置 x 和 y 坐标的位置。
public void poligon(Graphics g) {
Graphics2D g2d = (Graphics2D) g;
Polygon pol;
int x[] = {375, 400, 450, 475, 450, 400};
int y[] = {150, 100, 100, 150, 200, 200};
pol = new Polygon(x, y, x.length);
g2d.setPaint(Color.red);
g2d.fill(pol);
}
qq_遁去的一_1
相关分类