Microscopic Traffic Simulator
Node.cs
Go to the documentation of this file.
1 using System;
2 using System.Windows;
3 
4 namespace Microscopic_Traffic_Simulator___Model.GeometricObjects.Nodes
5 {
9  [Serializable]
10  public abstract class Node
11  {
15  private Point location;
19  public Point Location { get { return location; } }
20 
25  internal Node(Point location)
26  {
27  this.location = location;
28  }
29  }
30 }
Class representing an object in topology on lane.
Definition: Node.cs:10