示例#1
0
文件: Api.cs 项目: wangpei421/h3net
 /// <summary>
 /// hexagon neighbors in all directions
 /// </summary>
 public static void KRing(H3Index origin, int k, out List <H3Index> outCells)
 {
     outCells = origin.KRing(k);
 }