b = isPointInsideRect(point, rect)
isPointInsideRect, determine if points are inside or on the edge of a rectangle [left bottom width height].
point | any | Nx2 array of points (x,y) |
rect | any | rectangle [left bottom width height] |
b | any | [Nx1] boolean, if true point is inside or on edges of box, false otherwise |