SharpMath.Point2D.Distance C# (CSharp) Method

Distance() public method

public Distance ( ) : float
return float
        public float Distance()
        {
            return (float) System.Math.Sqrt( x * x + y * y );
        }