CCT.NUI.Core.Clustering.ClusterPrototype.Calc2DDistance C# (CSharp) Method

Calc2DDistance() public method

public Calc2DDistance ( System.Point point ) : double
point System.Point
return double
        public double Calc2DDistance(Point point)
        {
            return Point.Distance(point, this.center);
        }