示例#1
0
文件: Api.cs 项目: wangpei421/h3net
 /// <summary>
 /// returns whether or not the provided hexagons border
 /// </summary>
 public static int H3IndexesAreNeighbors(H3Index origin, H3Index destination)
 {
     return(origin.IsNeighborTo(destination)
                ? 1
                : 0);
 }