Microscopic Traffic Simulator
Main Page
Packages
Classes
Files
File List
CellWalker.cs
Go to the documentation of this file.
1
using
System
.Collections.Generic;
2
3
namespace
Microscopic_Traffic_Simulator___Model
.CellularTopologyObjects.CellWalkers
4
{
8
abstract
class
CellWalker
9
{
13
protected
Cell
cell
;
14
19
internal
CellWalker
(
Cell
cell)
20
{
21
this.cell = cell;
22
}
23
28
internal
abstract
IEnumerable<Cell> GetNext();
29
}
30
}
System
Microscopic_Traffic_Simulator___Model.CellularTopologyObjects.CellWalkers.CellWalker.cell
Cell cell
Cell from the walk starts.
Definition:
CellWalker.cs:13
Microscopic_Traffic_Simulator___Model.CellularTopologyObjects.Cell
Class representing cell.
Definition:
Cell.cs:9
Microscopic_Traffic_Simulator___Model.CellularTopologyObjects.CellWalkers.CellWalker
Abstract class for returning cells by walking through topology.
Definition:
CellWalker.cs:8
Microscopic_Traffic_Simulator___Model
Microscopic Traffic Simulator - Model
CellularTopologyObjects
CellWalkers
CellWalker.cs
Generated by
1.8.11