Beispiel #1
0
 public bool Equals(Punt other)
 {
     if ((other.X == this.X) && (other.Y == this.Y))
     {
         return(true);
     }
     else
     {
         return(false);
     }
 }
Beispiel #2
0
 public Knoop(int id, Punt mpunt)
 {
     KnoopID = id;
     Punt    = mpunt;
 }