示例#1
0
 private SparseGrid2(GridDefinition def, int validCellCount)
     : base(def, validCellCount)
 {
     m_index = new Dictionary <int, int>(validCellCount);
 }
示例#2
0
 public GridCoord(GridDefinition def, ushort row, ushort col)
 {
     m_def = def;
     m_row = row;
     m_col = col;
 }
示例#3
0
 private SparseGrid1(GridDefinition def, int validCellCount)
     : base(def, validCellCount)
 {
     m_index = new int[Def.IndexSize];
 }
示例#4
0
 protected SparseGridBase(GridDefinition def, int validCellCount)
     : base(def)
 {
     m_data = new T[validCellCount];
 }
示例#5
0
 public GridCoord(GridDefinition def, ushort row, ushort col)
 {
     m_def = def;
     m_row = row;
     m_col = col;
 }
示例#6
0
 protected GridBase(GridDefinition def)
 {
     m_def = def;
 }
示例#7
0
        public static Grid <T> Create(ushort sizeX, ushort sizeY, bool buffered = false, T fillVal = default(T))
        {
            var def = new GridDefinition(sizeX, sizeY, buffered);

            return(new Grid <T>(def, fillVal));
        }