Glare.Box4.Distance C# (CSharp) Method

Distance() public method

Get the closest distance between this Box4 and the Vector4.
public Distance ( System.Vector4 point ) : Length
point System.Vector4
return Length
        public Length Distance( Vector4 point)
        {
            Vector4 nearest;
                NearestPointTo(ref point, out nearest);
                return point.Distance(ref nearest);
        }