コード例 #1
0
 public GridMapperTests()
 {
     mapper = new GridMapper();
 }
コード例 #2
0
ファイル: Core.cs プロジェクト: inau/graphlib
 public GridGraph(int cols, int rows)
     : base(cols * rows)
 {
     Mapping = new GridMapper(cols, rows);
 }