LifeSimulation.Core.Vector.Distance C# (CSharp) Method

Distance() public method

public Distance ( Vector other ) : double
other Vector
return double
        public double Distance(Vector other)
        {
            return Vector.Distance(this,other);
        }

Same methods

Vector::Distance ( Vector v1, Vector v2 ) : double