コード例 #1
0
ファイル: MapGenerator.cs プロジェクト: gl4tsch/MapGenerator
 // Delaunator extension
 IEnumerable <int> GetNeighbours(int point)
 {
     foreach (var e in delaunator.EdgesAroundPoint(point))
     {
         yield return(delaunator.Triangles[e]);
     }
 }