public double uzaklik(Nokta n) { return(Math.Sqrt(Math.Pow(this.x - n.x, 2) + Math.Pow(this.y - n.y, 2))); }