Microscopic Traffic Simulator
EndNode.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 EndNode : Node
11  {
16  public EndNode(Point location) : base(location) { }
17  }
18 }
EndNode(Point location)
Constructs node on the end of the lane.
Definition: EndNode.cs:16
Class representing an object in topology on lane.
Definition: Node.cs:10