Glare.Box3.Distance C# (CSharp) Method

Distance() public method

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