SharpMath.Point2D.Distance C# (CSharp) 메소드

Distance() 공개 메소드

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