System.Windows.Forms.MathHelper.DistanceD C# (CSharp) Method

DistanceD() public static method

public static DistanceD ( PointF p1, PointF p2 ) : double
p1 System.Drawing.PointF
p2 System.Drawing.PointF
return double
        public static double DistanceD(PointF p1, PointF p2)
        {
            return DistanceD(p1.X, p1.Y, p2.X, p2.Y);
        }

Same methods

MathHelper::DistanceD ( float x1, float y1, float x2, float y2 ) : double