Microscopic Traffic Simulator
InnerNode.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 class InnerNode : Node
11  {
15  private double t;
16 
22  public InnerNode(Point location, double t)
23  : base(location)
24  {
25  this.t = t;
26  }
27  }
28 }
InnerNode(Point location, double t)
Initialization of the inner node.
Definition: InnerNode.cs:22
Node on the lane which is not the start or end node.
Definition: InnerNode.cs:10
Class representing an object in topology on lane.
Definition: Node.cs:10