MorphExtractorCL.Point3Dd.EuclideanDistanceTo C# (CSharp) Method

EuclideanDistanceTo() public method

public EuclideanDistanceTo ( Point3Dd other ) : double
other Point3Dd
return double
        public double EuclideanDistanceTo(Point3Dd other)
        {
            return Math.Sqrt(Math.Pow(other.X - X, 2) + Math.Pow(other.Y - Y, 2) + Math.Pow(other.Z - Z, 2));
        }
    }