Glare.Box2d.Overlaps C# (CSharp) Method

Overlaps() public method

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