Glare.Box3.Overlaps C# (CSharp) Method

Overlaps() public method

Get whether this Box3 inclusively intersects with the Vector3.
public Overlaps ( System.Vector3 point ) : bool
point System.Vector3
return bool
        public bool Overlaps( Vector3 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 ;
        }