Glare.Box4f.Overlaps C# (CSharp) Method

Overlaps() public method

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