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');
const {
toDegrees,
toRadians,
distance,
distances,
average,
weightedAverage,
} = require('angle-helper');
Helper functions
toDegrees(0.785398);
toRadians(45);
const targetAngle = 180;
distance(targetAngle, 45);
const targetAngle = 180;
distances(targetAngle, [45, 50, 55]);
average([45, 50, 55, 60]);
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.