Ejemplo n.º 1
0
 public bool getCellMatrix(out SearchCells output)
 {
     return agent.getCellMatrix(out output);
 }
Ejemplo n.º 2
0
 public virtual void uniteMatrix(SearchCells matr)
 {
 }
Ejemplo n.º 3
0
 public void uniteMatrix(SearchCells matrix)
 {
     agent.uniteMatrix(matrix);
 }
Ejemplo n.º 4
0
 public virtual bool getCellMatrix(out SearchCells output)
 {
     output = new SearchCells();
     return false;
 }
Ejemplo n.º 5
0
 public override void uniteMatrix(SearchCells matr)
 {
     cells.uniteWith(matr);
     cellsUpdated = false;
 }
Ejemplo n.º 6
0
 public override bool getCellMatrix(out SearchCells rez)
 {
     rez = cells;
     return true;
 }
Ejemplo n.º 7
0
 public Finder1(ref AgentEnv env)
     : base(ref env)
 {
     cells = new SearchCells(getMyViewRadius());
     genAim();
 }
Ejemplo n.º 8
0
 public void uniteWith(SearchCells obj)
 {
     field.UnionWith(obj.getCollection());
 }