Пример #1
0
 public RoadStrip(RoadStateManager roadStateManager, double x)
 {
     this._roadStateManager = roadStateManager;
     this.Z = _roadStateManager.RoadLength;
     this.X = x;
     CalculatePositions();
 }
Пример #2
0
 public StopSign(RoadStateManager roadStateManager, double x)
 {
     this._roadStateManager = roadStateManager;
     this.Z = _roadStateManager.RoadLength;
     this.X = x;
     this.PolygonRepresentation = new StopSignPolygon(StopSignPolygon.StopSign.Points);
     CalculatePositions();
 }