public override bool Equals(Object obj) { if ((obj == null) || !this.GetType().Equals(obj.GetType())) { return(false); } else { Punt p = (Punt)obj; return((X == p.X) && (Y == p.Y)); } }
public Knoop() { Punt = new Punt(); }
public Knoop(int knoopId, Punt punt) { Id = knoopId; Punt = punt; }
private static double getLengthBetweenPoints(Punt een, Punt ander) { return(Math.Sqrt(Math.Pow(een.X - ander.X, 2) + Math.Pow(een.Y - ander.Y, 2))); }