New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

angle-helper

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

angle-helper

Helper functions for working with angles and degrees

  • 0.0.3
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1
decreased by-83.33%
Maintainers
1
Weekly downloads
 
Created
Source

Angle Helper

Helper functions to aid calculations with angles and degrees.

Getting Started

Installation

Install with NPM.

npm install angle-helper

Install with Yarn.

yarn add angle-helper

Setup and Usage

Import the library
const angle = require('angle-helper');

// or

const {
  toDegrees,
  toRadians,
  distance,
  distances,
  average,
  weightedAverage,
} = require('angle-helper');
Helper functions
// convert to degrees
toDegrees(0.785398);

// convert to radians
toRadians(45);

// calculate distance
const targetAngle = 180;
distance(targetAngle, 45);

// calculate distances
const targetAngle = 180;
distances(targetAngle, [45, 50, 55]);

// calculate average
average([45, 50, 55, 60]);

// calculate weighted average
// weights do not have to add to 1
weightedAverage([45, 50, 55, 60], [0.2, 0.3, 0.2, 0.3]);

License

MIT

Change Log

0.0.0

Publish package.

0.0.1 and 0.0.2

Fix distance formula when target angle < 90 and compared angles > 270.

0.0.3

Update dependencies.

FAQs

Package last updated on 17 Jul 2019

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