Description Usage Arguments Value Author(s) Examples
Checks if a point is inside a box. The point is specified bi its x and y coordinates and the box with the minimum and maximum values on both coordinate axis: xmin, xmax, ymin, ymax. The vertices of the box are then (xmin, ymin), (xmax, ymin), (xmax, ymax) and (xmin, ymax).
1 | inbox(x, y, xmin, xmax, ymin, ymax)
|
x |
x coordinate of the point. |
y |
y coordinate of the point. |
xmin |
Minimum value of X. |
xmax |
Maximum value of X. |
ymin |
Minimum value of Y. |
ymax |
Maximum value of Y. |
Returns a logical value: TRUE if the point is inside the box and FALSE otherwise.
Jose Luis Vicente Villardon
1 | inbox(0, 0, -1, 1, -1, 1)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.