Beispiel #1
0
 public TriggerPoint(GpsMapCell gmc, float longitude, float latitude, string name)
     : base(gmc)
 {
     this.Longitude = longitude;
     this.Latitude  = latitude;
     this.Name      = name;
 }
Beispiel #2
0
 public PathPoint(GpsMapCell gmc, Vector3 vertex)
     : base(gmc)
 {
     this.Vertex = vertex;
 }