Microscopic Traffic Simulator
GpsRecordsManager.LocationAndDirection.cs
Go to the documentation of this file.
1 using System.Windows;
2 
3 namespace Microscopic_Traffic_Simulator___Model.CellularTopologyObjects
4 {
8  partial class GpsRecordsManager
9  {
13  public struct LocationAndDirection
14  {
18  public Point Location;
19 
24 
30  internal LocationAndDirection(Point point, Vector directionNormalizedVector)
31  {
32  Location = point;
33  DirectionNormalizedVector = directionNormalizedVector;
34  }
35  }
36  }
37 }