0.1.4 • Published 4 years ago

@pelevesque/is-point-in v0.1.4

Weekly downloads
5
License
MIT
Repository
github
Last release
4 years ago

Build Status Coverage Status JavaScript Style Guide

is-point-in

Checks if a point is inside a shape.

Node Repository

https://www.npmjs.com/package/@pelevesque/is-point-in

Installation

npm install @pelevesque/is-point-in

Tests

CommandDescription
npm test or npm run testAll Tests Below
npm run coverStandard Style
npm run standardCoverage
npm run unitUnit Tests

Methods

  • rectangle Checks if a point is inside a rectangle.
  • circle Checks if a point is inside a circle.

Usage

Initialization

Requiring the Entire Module

const IsPointIn = require('@pelevesque/is-point-in')

Requiring a Specific Method

const IsPointInRectangle = require('@pelevesque/is-point-in').rectangle

Rectangle

// point
const x = 10
const y = 10

// rectangle
const x1 = 5
const y1 = 5
const x2 = 15
const y2 = 15

const result = IsPointIn.rectangle(x, y, x1, y1, x2, y2)
// result === true

Circle

// point
const x = -3.84
const y = 3.22

// circle
const cx = 0
const cy = 0
const cRadius = 5

const result = IsPointIn.circle(x, y, cx, cy, cRadius)
// result === false
0.1.4

4 years ago

0.1.3

5 years ago

0.1.2

5 years ago

0.1.1

6 years ago

0.1.0

6 years ago

0.0.3

6 years ago

0.0.2

6 years ago