Graphics图形编程(一)

作者:追风剑情 发布于:2016-5-30 17:01 分类:C#

示例:绘制2.5D地图网格辅助线

  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Text;
  7. using System.Windows.Forms;
  8.  
  9. namespace TestGraphics
  10. {
  11. public partial class Form1 : Form
  12. {
  13. public Form1()
  14. {
  15. InitializeComponent();
  16. }
  17.  
  18. private void Form1_Paint(object sender, PaintEventArgs e)
  19. {
  20. DrawMapGrid(e.Graphics, 8, 6, 64, 32);
  21. }
  22.  
  23. private void Form1_Load(object sender, EventArgs e)
  24. {
  25. //当窗口尺寸改变时重绘所有窗口
  26. this.SetStyle(ControlStyles.AllPaintingInWmPaint | ControlStyles.ResizeRedraw, true);
  27. }
  28.  
  29. private void DrawMapGrid(Graphics g, Rectangle mapRect, int gridWidth, int gridHeight)
  30. {
  31. int rowCount = mapRect.Height / gridHeight;
  32. int colCount = mapRect.Width / gridWidth;
  33. DrawMapGrid(g, rowCount, colCount, gridWidth, gridHeight);
  34. }
  35.  
  36. private void DrawMapGrid(Graphics g, int rowCount, int colCount, int gridWidth, int gridHeight)
  37. {
  38. Pen pen = new Pen(Brushes.Black);
  39. Point p1;
  40. Point p2;
  41.  
  42. List<Point> vertexs = CalMapVertexs(g, rowCount, colCount, gridWidth, gridHeight);
  43. int maxVertIndex = vertexs.Count - 1;
  44.  
  45. //绘制斜线
  46. for (int i = 0; i < colCount + rowCount; i++)
  47. {
  48. p1 = vertexs[i];
  49. p2 = vertexs[maxVertIndex - i];
  50. g.DrawLine(pen, p1, p2);
  51. }
  52.  
  53. //绘制反斜线
  54. int index1 = colCount - 1;
  55. int index2 = colCount;
  56. for (int i = 0; i < colCount + rowCount; i++)
  57. {
  58. int startIndex = index1 - i;
  59. if (startIndex < 0)
  60. startIndex += vertexs.Count;
  61. p1 = vertexs[startIndex];
  62. p2 = vertexs[index2 + i];
  63. g.DrawLine(pen, p1, p2);
  64. }
  65. }
  66.  
  67. private List<Point> CalMapVertexs(Graphics g, int rowCount, int colCount, int gridWidth, int gridHeight)
  68. {
  69. Pen pen = new Pen(Brushes.Black);
  70.  
  71. Point p = new Point(gridWidth / 2, 0);
  72. List<Point> vertexs = new List<Point>();
  73.  
  74. //计算上边顶点坐标
  75. for (int i = 0; i < colCount; i++)
  76. {
  77. g.DrawEllipse(pen, p.X, p.Y, 5, 5);
  78. vertexs.Add(new Point(p.X, p.Y));
  79. p.X += gridWidth;
  80. }
  81.  
  82. //计算右侧顶点坐标
  83. p.X -= gridWidth / 2;
  84. p.Y = gridHeight / 2;
  85. for (int i = 0; i < rowCount; i++)
  86. {
  87. g.DrawEllipse(pen, p.X, p.Y, 5, 5);
  88. vertexs.Add(new Point(p.X, p.Y));
  89. p.Y += gridHeight;
  90. }
  91.  
  92. //计算下边顶点坐标
  93. p.X -= gridWidth / 2;
  94. p.Y -= gridHeight / 2;
  95. for (int i = 0; i < colCount; i++)
  96. {
  97. g.DrawEllipse(pen, p.X, p.Y, 5, 5);
  98. vertexs.Add(new Point(p.X, p.Y));
  99. p.X -= gridWidth;
  100. }
  101.  
  102. //计算左侧坐标
  103. p.X = 0;
  104. p.Y -= gridHeight / 2;
  105. for (int i = 0; i < rowCount; i++)
  106. {
  107. g.DrawEllipse(pen, p.X, p.Y, 5, 5);
  108. vertexs.Add(new Point(p.X, p.Y));
  109. p.Y -= gridHeight;
  110. }
  111.  
  112. return vertexs;
  113. }
  114. }
  115. }

 

运行效果

111111111.png

 

标签: C#

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号