Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • C#

Idiom #178 Check if point is inside rectangle

Set boolean b to true if if the point with coordinates (x,y) is inside the rectangle with coordinates (x1,y1,x2,y2) , or to false otherwise.
Describe if the edges are considered to be inside the rectangle.

using System.Windows;
b = new Rect(new Point(x1, y1), new Point(x2, y2)).Contains(x, y);

There's an older System.Drawing.Rectangle class which has a similar API for this purpose if System.Windows is not available.
int isInsideRect(double x1, double y1, double x2, double y2, double px, double py){
	return px >= x1 && px <= x2 && py >= y1 && py <= y2; 
}

Using C convention with 1 for true and 0 for false.

Assuming that x1 < x2 and y1 < y2

New implementation...
< >
Bart