Checks if point is in rectangle or not.
npm install check-point-in-rectangle```
npm install check-point-in-rectangle
javascript
var checkPointIn = require('check-point-in-rectangle');
checkPointIn(point, rectangle [,precision])
`
point array of x and y coordinates
rectangle array of four corner points
precision is used in algorithm to compare the area of rectangle and sum of triangles formed by point with rectangle, default is 6
$3
``javascript
var checkPoint = require('check-point-in-rectangle');
if (checkPoint([5,5],[[0,0], [10,0], [10,10], [0,10]]) == true) {
console.log('Point is inside the rectangle');
}
`
developing
Once you run
`npm isntall`then for running test
`npm run test`to create build
`npm run build``