DDA直线扫描转换算法

作者:追风剑情 发布于:2019-3-24 11:02 分类:Algorithms

设待画线段两个端点坐标值是(x1, y1)和(x2, y2),不妨假定x1 < x2,待画线段所在直线方程是y=mx+b,则有

222.png

示例

  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Windows.Forms;
  9.  
  10. namespace DDTTest
  11. {
  12. public partial class Form1 : Form
  13. {
  14. public Form1()
  15. {
  16. InitializeComponent();
  17. Initialize();
  18. }
  19.  
  20. private void Initialize()
  21. {
  22. Bitmap bmp = new Bitmap(500, 500);
  23. this.pictureBox1.Image = bmp;
  24. //Graphics g = Graphics.FromImage(bmp);
  25.  
  26. PointF p1 = new PointF() { X = 0, Y = 0 };
  27. PointF p2 = new PointF() { X = 100, Y = 200 };
  28. PointF p3 = new PointF() { X = 200, Y = 50 };
  29. DDALine(bmp, p1, p2, Color.Red);
  30. DDALine(bmp, p2, p3, Color.Yellow);
  31. DDALine(bmp, p1, p3, Color.White);
  32. }
  33.  
  34. /// <summary>
  35. /// 绘制线段的数值微分分析器(Digital Differential Analyzer, DDA)
  36. /// </summary>
  37. /// <param name="bmp"></param>
  38. /// <param name="p1"></param>
  39. /// <param name="p2"></param>
  40. private void DDALine(Bitmap bmp, PointF p1, PointF p2, Color color)
  41. {
  42. double dx, dy, e, x, y;
  43. dx = p2.X - p1.X;
  44. dy = p2.Y - p1.Y;
  45. //这里必须取最大的那个距离差,不然会画成虚线(即,线条不连续)
  46. e = Math.Abs(dx) > Math.Abs(dy) ? Math.Abs(dx) : Math.Abs(dy);
  47. //为画线精确,应使画出的相邻点的坐标值最大相差1
  48. dx /= e;
  49. dy /= e;
  50. x = p1.X;
  51. y = p1.Y;
  52.  
  53. for (int i = 0; i <= e; i++)
  54. {
  55. //(int)(x + 0.5)表示对x四舍五入
  56. //(int)(y + 0.5)表示对y四舍五入
  57. bmp.SetPixel((int)(x + 0.5), (int)(y + 0.5), color);
  58. x += dx;
  59. y += dy;
  60. }
  61. }
  62. }
  63. }

运行测试
11111.png

标签: Algorithms

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号