Glare.Box4d.Distance C# (CSharp) Method

Distance() public method

Get the closest distance between this Box4d and the Vector4d.
public Distance ( Vector4d point ) : Double
point Vector4d
return Double
        public Double Distance( Vector4d point)
        {
            Vector4d nearest;
                NearestPointTo(ref point, out nearest);
                return point.Distance(ref nearest);
        }