Exemplo n.º 1
0
 public GenericPoint(GenericPoint gp)
 {
     ele  = gp.ele;
     lat  = gp.lat;
     lon  = gp.lon;
     link = gp.link;
 }
Exemplo n.º 2
0
 public GenericPoint(GenericPoint gp)
 {
     ele = gp.ele;
     lat = gp.lat;
     lon = gp.lon;
     link = gp.link;
 }
Exemplo n.º 3
0
        public override bool Equals(object obj)
        {
            GenericPoint gp = obj as GenericPoint;

            if (gp == null)
            {
                return(false);
            }

            return(ele == gp.ele && lat == gp.lat && lon == gp.lon);
        }
Exemplo n.º 4
0
 public WayPoint(GenericPoint gp)
     : base(gp)
 {
 }
Exemplo n.º 5
0
 public WayPoint(GenericPoint gp)
     : base(gp)
 {
 }