gpt4 book ai didi

java - 在矩形内绘制基于图 block 的椭圆

转载 作者:行者123 更新时间:2023-11-30 06:56:43 27 4
gpt4 key购买 nike

我正在尝试生成随机大小的椭圆并将它们绘制到 map 上(只是一个二维图 block 阵列)。在大多数情况下,它是有效的,但似乎当房间宽度大于高度时,它会切断墙角。

enter image description here

下面是我绘制椭圆的代码。基本上接受一个矩形并在其中绘制椭圆。

private void AddCellEllipse(int xStart, int yStart, int xEnd, int yEnd, Tile tile)
{
// Draw an ellipse centered in the passed-in coordinates
float xCenter = (xEnd + xStart) / 2.0f;
float yCenter = (yEnd + yStart) / 2.0f;
float xAxis = (xEnd - xStart) / 2.0f;
float yAxis = (yEnd - yStart) / 2.0f;

for (int y = yStart; y <= yEnd; y++)
for (int x = xStart; x <= xEnd; x++)
{
// Only draw if (x,y) is within the ellipse
if (Math.sqrt(Math.pow((x - xCenter) / xAxis, 2.0) + Math.pow((y - yCenter) / yAxis, 2.0)) <= 1.0f)
tiles[x][y] = tile;
}
}

我这样调用那个方法。在随机位置生成一个随机大小的矩形,然后创建一个椭圆形的墙砖,然后用地砖覆盖内墙砖。

    AddCellEllipse(xRoomStart, yRoomStart, xRoomStart + roomWidth, yRoomStart + roomHeight, Tile.WALL);
AddCellEllipse(xRoomStart + 1, yRoomStart + 1, xRoomStart + roomWidth - 1, yRoomStart + roomHeight - 1, Tile.FLOOR);

还有一个额外的问题,有人知道我怎样才能让它不把 1 个瓷砖放在椭圆的顶部/底部吗?

最佳答案

您可以使用 Bresenham ellipse algorithm或中点算法绘制椭圆。

当您使用上述算法绘制两个对称点(图 block )时:

DrawPixel (xc + x, yc + y);
DrawPixel (xc - x, yc + y);

只需用内部瓷砖填充它们之间的线段。

关于java - 在矩形内绘制基于图 block 的椭圆,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34186027/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com