在网格布局上绘制一条线,然后添加垂直轴 [英] Plotting a line on a grid layout, then addition veritcal axis

查看:23
本文介绍了在网格布局上绘制一条线,然后添加垂直轴的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

本问题底部的解决方案

我有这个代码:

public void lineImproved(int x0, int y0, int x1, int y1, Color color)
{
    int pix = color.getRGB();
    int dx = x1 - x0;
    int dy = y1 - y0;

    raster.setPixel(pix, x0, y0);
    if (Math.abs(dx) > Math.abs(dy)) {          // slope < 1
        float m = (float) dy / (float) dx;      // compute slope
        float b = y0 - m*x0;
        dx = (dx < 0) ? -1 : 1;
        while (x0 != x1) {
            x0 += dx;
            raster.setPixel(pix, x0, Math.round(m*x0 + b));
        }
    } else
    if (dy != 0) {                              // slope >= 1
        float m = (float) dx / (float) dy;      // compute slope
        float b = x0 - m*y0;
        dy = (dy < 0) ? -1 : 1;
        while (y0 != y1) {
            y0 += dy;
            raster.setPixel(pix, Math.round(m*y0 + b), y0);
        }
    }
}

它当前绘制一条线并填充构成指定 2 个点之间的线的特定像素(即 [x0,y0] 和 [x1,y1]).我需要它包含一个 h0 和 h1 来表示 2 个点的高度.通过这样做,我希望能够使用每个 raster.setPixel 函数获得垂直轴上的高度值.

It currently plots a line and fills in the specific pixels that make up the line between the 2 points specified (i.e. [x0,y0] and [x1,y1]). I need it to include an h0 and h1 for the height of the 2 points. By doing so I hope to be able to obtain a height value on the vertical axis with every raster.setPixel function.

更新我现在有了这个任务的代码,但仍然只是二维的.我需要对以下代码实施建议的解决方案来验证它:

    internal static int DrawLine(Player theplayer, Byte drawBlock, int x0, int y0, int z0, int x1, int y1, int z1)
    {
        int blocks = 0;
        bool cannotUndo = false;

        int dx = x1 - x0;
        int dy = y1 - y0;
        int dz = z1 - z0;

        DrawOneBlock (theplayer, drawBlock, x0, y0, z0, ref blocks, ref cannotUndo);
        if (Math.Abs(dx) > Math.Abs(dy))
        {          // slope < 1
            float m = (float)dy / (float)dx;      // compute slope
            float b = y0 - m * x0;
            dx = (dx < 0) ? -1 : 1;
            while (x0 != x1)
            {
                x0 += dx;
                DrawOneBlock(theplayer, drawBlock, x0, Convert.ToInt32(Math.Round(m * x0 + b)), z0, ref blocks, ref cannotUndo);
            }
        }
        else
        {

            if (dy != 0)
            {                              // slope >= 1
                float m = (float)dx / (float)dy;      // compute slope
                float b = x0 - m * y0;
                dy = (dy < 0) ? -1 : 1;
                while (y0 != y1)
                {
                    y0 += dy;
                    DrawOneBlock(theplayer, drawBlock, Convert.ToInt32(Math.Round(m * y0 + b)), y0, z0, ref blocks, ref cannotUndo);
                }
            }
        }
        return blocks;
    }

解决方案:

internal static int DrawLine(Player theplayer, Byte drawBlock, int x0, int y0, int z0, int x1, int y1, int z1)
    {
        int blocks = 0;
        bool cannotUndo = false;
        bool detected = false;

        int dx = x1 - x0;
        int dy = y1 - y0;
        int dz = z1 - z0;

        DrawOneBlock (theplayer, drawBlock, x0, y0, z0, ref blocks, ref cannotUndo);

    //a>x,b>y,c>z
    if (Math.Abs(dx) > Math.Abs(dy) && Math.Abs(dx) > Math.Abs(dz) && detected == false)
        { // x distance is largest
            detected = true;
            float my = (float)dy / (float)dx;      // compute y slope
            float mz = (float)dz / (float)dx;      // compute z slope
            float by = y0 - my * x0;
            float bz = z0 - mz * x0;
            dx = (dx < 0) ? -1 : 1;
            while (x0 != x1)
            {
                x0 += dx;
                DrawOneBlock(theplayer, drawBlock, Convert.ToInt32(x0), Convert.ToInt32(Math.Round(my * x0 + by)), Convert.ToInt32(Math.Round(mz * x0 + bz)), ref blocks, ref cannotUndo);
            }
        }

    //a>y,b>z,c>x
    if (Math.Abs(dy) > Math.Abs(dz) && Math.Abs(dy) > Math.Abs(dx) && detected == false && detected == false)
        { // y distance is largest
            detected = true;
            float mz = (float)dz / (float)dy;      // compute z slope
            float mx = (float)dx / (float)dy;      // compute x slope
            float bz = z0 - mz * y0;
            float bx = x0 - mx * y0;
            dy = (dy < 0) ? -1 : 1;
            while (y0 != y1)
            {
                y0 += dy;
                DrawOneBlock(theplayer, drawBlock, Convert.ToInt32(Math.Round(mx * y0 + bx)), Convert.ToInt32(y0) , Convert.ToInt32(Math.Round(mz * y0 + bz)), ref blocks, ref cannotUndo);
            }
        }

    //a>z,b>x,c>y
    if (Math.Abs(dz) > Math.Abs(dx) && Math.Abs(dz) > Math.Abs(dy) && detected == false && detected == false)
        { // z distance is largest
            detected = true;
            float mx = (float)dx / (float)dz;      // compute x slope
            float my = (float)dy / (float)dz;      // compute y slope
            float bx = x0 - mx * z0;
            float by = y0 - my * z0;
            dz = (dz < 0) ? -1 : 1;
            while (z0 != z1)
            {
                z0 += dz;
                DrawOneBlock(theplayer, drawBlock, Convert.ToInt32(Math.Round(mx * z0 + bx)), Convert.ToInt32(Math.Round(my * z0 + by)), Convert.ToInt32(z0), ref blocks, ref cannotUndo);
            }
        }

推荐答案

您需要比较 abs(dx)abs(dy)abs(dz) 并选择最大的.在每种情况下,使用与您所拥有的代码类似的代码,类似地计算其他两个坐标:

You will need to compare abs(dx), abs(dy), and abs(dz) and pick the biggest one. In each case use code like to what you have, computing both other coordinates similarly:

if (Math.abs(dx) > Math.abs(dy) && Math.abs(dx) > Math.abs(dz)) { // x distance is largest
    float my = (float) dy / (float) dx;      // compute y slope
    float mz = (float) dz / (float) dx;      // compute z slope
    float by = y0 - my*x0;
    float bz = z0 - mz*x0;
    dx = (dx < 0) ? -1 : 1;
    while (x0 != x1) {
        x0 += dx;
        raster.setPixel(pix, x0, Math.round(my*x0 + by), Math.round(mz*x0 + bz));
    }

这篇关于在网格布局上绘制一条线,然后添加垂直轴的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆