Mit diesem Snippet kann man durch die Übergabe von 2 Ecken und einem Point bestimmen ob sich dieser dazwischen ( oder auf der Linie ) befindet.
namespace IsBetween
{
static class Between
{
static public bool isBetween(Point upperLeftEdge, Point lowerRightEdge, Point yourPoint)
{
if (yourPoint.X >= upperLeftEdge.X & yourPoint.Y >= upperLeftEdge.Y & yourPoint.Y <= lowerRightEdge.Y & yourPoint.X <= lowerRightEdge.X)
return true;
else
return false;
}
}
}
5 Kommentare zum Snippet