如果我有一个 2D 字符数组,如何在控制台上画一条线。我想写的函数是这样的:
这是我的第一次尝试,但看起来完全错误
public static void line(char[][] mPixels, int startRow, int startColumn, int endRow, int endColumn)
{
double dY = endRow - startRow;
double dX = endColumn - startColumn;
double slope = dX / dY;
slope = Math.abs(slope);
if(slope >= 1)
{
double progress = -(dY / dX);
for(int i=startColumn; i<=endColumn; i++)
{
double j = startRow - (int) ((i-startColumn) * progress);
int yLoc = (int) (Math.round( j * 100.0 ) / 100.0);
mPixels[i][yLoc] = '*';
}
}
// print array
}
使用DDA或Bresenham,...
您拥有的看起来像 DDA,但您没有正确处理斜坡。您应该除以具有较大像素量的轴并将其用作控制轴,以便:
如果是|dx|>|dy|
那么for
会经历x = x0 -> x1
和y=y0+((x-x0)*dy/dx)
如果|dx|<|dy|
那么for
会经历y = y0 -> y1
和x=x0+((y-y0)*dx/dy)
如果它们相等,则使用上述任何一种。
如果dx==0
和dy==0
绘制,则只点,不存在for
不要忘记处理主轴是上升还是下降(可以是x++,y++
或x--,y--
)也可以只在整数上完成,无需除法或乘法,但那是另一回事