Glare.Box4i.Overlaps C# (CSharp) Method

Overlaps() public method

Get whether this Box4i inclusively intersects with the Vector4i.
public Overlaps ( Vector4i point ) : bool
point Vector4i
return bool
        public bool Overlaps( Vector4i point)
        {
            return  point.X >= Min.X && point.X <= Max.X && point.Y >= Min.Y && point.Y <= Max.Y && point.Z >= Min.Z && point.Z <= Max.Z && point.W >= Min.W && point.W <= Max.W ;
        }