二维数组以及地图高度数据存储方式

Posted 露夕逝

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了二维数组以及地图高度数据存储方式相关的知识,希望对你有一定的参考价值。

1.二维数组定义

 int[,] arr = new int[len0, len1];

定义一个len0行,len1列的二维数组,这里的len0,len1指的是GetLength(index)

 int[,] arr=new int[2,3];//2行3列的数组 
 Console.Out.WriteLine(arr.GetLength(0)+","+arr.GetLength(1));//输出2,3

 int[,] arr = { { 1, 2, 3 }, { 4, 5, 6 } };
 Console.Out.WriteLine(arr.GetLength(0)+","+arr.GetLength(1));//输出2,3

2.遍历方式

 int[,] arr = new int[len0, len1];

 for (int i = 0; i < len0; i++)

        for (int j = 0; j < len1; j++)

              Console.WriteLine(arr[i, j]);

arr[i,j]代表第i行,第j列的某值:

例子:

    int[,] arr = { { 1, 2, 3 }, { 4, 5, 6 } };

  Console.WriteLine(arr[1, 2]);//输出 6,第1行,第2列(起点为0)

int[,] arr = { { 1, 2, 3 }, { 4, 5, 6 } };
for (int i = 0; i < 2; i++)
  for (int j = 0; j < 3; j++)
  {
     Console.WriteLine(arr[i, j]);
  }
//输出1,2,3,4,5,6,

3.地图高度数组存储

如定义一个width=5,length=4的地图

数组应该定义如下:(经测试,terrain内置的高度数据也是这样存的)

int length = 4;
int width = 5;
int[,] arr = new int[length, width];

for (int i = 0; i < length; i++)
   for (int j = 0; j < width; j++)
      {
      arr[i, j] = 该点高度;
      }

4.高度图输出

输出高度图有点区别,高度图的存储是不同的,统一按以下去写入:

Texture2D tex = new Texture2D(width, length);
for (int i = 0; i < width; i++)
   for (int j = 0; j < length; j++)
       {
       tex.SetPixel(i, j, new Color(arr[j, i], arr[j, i],arr[j, i]));
       }
string str = Application.dataPath + "/normal_test.png";
byte[] byt = tex.EncodeToPNG();
File.WriteAllBytes(str, byt);
AssetDatabase.Refresh();

以上是关于二维数组以及地图高度数据存储方式的主要内容,如果未能解决你的问题,请参考以下文章

arcgis 数据和服务中的z值,以及地下三维展示(附代码)

使用二维并行数组存储数据

分配一维动态数组or 二维动态数组的方法以及学习 new 方法or vector

数据结构与算法 - 图的邻接表 (思想以及实现方式)

二维数组 面向对象编程的概念 类对象以及引用 和成员方法

JAVA-初步认识-第六章-二维数组-定义方式内存图解