Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

compare-angle

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

compare-angle

Compares two angles with a common edge

  • 1.0.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
22K
decreased by-23.76%
Maintainers
1
Weekly downloads
 
Created
Source

compare-angle

Let A, B, C and D be four points in the plan. Then of the pair of angles ABC and ABD, determine which is larger.

  C
  *      D
   \     *
    \ABC/
     \ / ABD
      *-------------*
      B             A

Example

var compareAngle = require("compare-angle")

var A = [2, 0]
var B = [0, 0]
var C = [-1, 2]
var D = [1, 1]

console.log(compareAngle(A, B, C, D),  compareAngle(A, B, D, C))

Output:

1   -1

Install

npm install compare-angle

API

require("compare-angle")(a, b, c, d)

Compares the angles ABC and ABD to determine which is greater.

  • a, b are the base points of the angle
  • c is the end of the first angle
  • d is the end of the second angle

Returns A number indicating which angle is larger

  • +1 if angle ABC is greater than angle ABD
  • 0 if the angles are equal
  • -1 if angle ABD is greater than angle ABC

Credits

(c) 2014 Mikola Lysenko. MIT License

Keywords

FAQs

Package last updated on 28 Apr 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc