https://github.com/codewell/is-inside
Check whether a point is inside a geometric shape
https://github.com/codewell/is-inside
Last synced: 19 days ago
JSON representation
Check whether a point is inside a geometric shape
- Host: GitHub
- URL: https://github.com/codewell/is-inside
- Owner: codewell
- License: mit
- Created: 2019-11-27T08:16:47.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-05T01:48:38.000Z (over 3 years ago)
- Last Synced: 2025-02-22T07:31:50.643Z (over 1 year ago)
- Language: JavaScript
- Size: 873 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# is-inside
Check whether a point is inside a geometric shape
# @codewell/is-inside
## Installation
```
npm install @codewell/is-inside
```
## Basic Usage
```JavaScript
import from '@codewell/is-inside';
// Write examples here
```
## Testing
**Functions**
Write tests in the `tests/` folder
**Package**
1. Make a dry reslease with `npm run dry-release`. This will generate a file `packagename-x.x.x.tgz`.
2. Install the package in your other application/package by running `npm install path/to/packagename-x.x.x.tgz`.
3. Import and use as usual in you application/package.
## Releasing
1. Run `npm run release`
2. Push the code to github
3. Update package version
- `npm version patch` updates `x.x.1` -> `x.x.2`
- `npm version minor` updates `x.1.x` -> `x.2.x`
- `npm version major` updates `1.x.x` -> `2.x.x`
4. Run `npm publish --access public`
## Issues
Please help by posting issues here on github