VRageMath.Rectangle.Contains - bimbam2103/space_engineers GitHub Wiki
← Index ← Namespace Index ← Rectangle
public bool Contains(int x, int y)
Determines whether this Rectangle contains a specified point represented by its x- and y-coordinates.
public bool Contains(Point value)
Determines whether this Rectangle contains a specified Point.
- Point value
public void Contains(ref Point value, out bool result)
Determines whether this Rectangle contains a specified Point.
public bool Contains(Rectangle value)
Determines whether this Rectangle entirely contains a specified Rectangle.
- Rectangle value
public void Contains(ref Rectangle value, out bool result)
Determines whether this Rectangle entirely contains a specified Rectangle.