npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

trigonometry-equations

v2.0.1

Published

Trigonometry rules to solve equations for angles and sides

Downloads

3,979

Readme

trigonometry-equations

Build Status Coverage Status Greenkeeper badge

Trigonometry rules to solve equations for angles and sides

Installation

Run:

npm install trigonometry-equations --save

Usage

  1. Construct an object mapping angles and sides to their respective objects where the key is a number in the range [0, 3) and the value is the given number.
  2. Pass the object to an equation function that corresponds with an appropriate mathematical rule.
  3. The function will return an object similar to the input except it will include a key-value pair containing the solution with full numerical precision.
import {
  ambiguousCaseRule,
  angleRule,
  cosineRule,
  sineRule
} from 'trigonometry-equations';
// ES5 / CommonJS require works in addition to ES6 import
// var equations = require('trigonometry-equations');
// In ES5 call equations.sineRule, etc
let unsolvedTriangle = {
  angles: { 1: 35, 2: 105 },
  sides: { 1: 7 }
};
console.log(sineRule(unsolvedTriangle));
/*
{
  angles: { 1: 35, 2: 105 },
  sides: { 1: 7, 2: 11.788282006559363 }
}
*/

unsolvedTriangle = {
  angles: { 2: 59 },
  sides: { 0: 3.6, 1: 5.3 }
};
console.log(cosineRule(unsolvedTriangle));
/*
{
  angles: { 2: 59 },
  sides: { 0: 3.6, 1: 5.3, 2: 4.6255969410912074 }
}
*/

/*
cosineRule has an optional parameter
allowing you to specify the angle solved
when you pass it three sides.
If you don't pass in this parameter it will
solve the first unsolved angle of the triangle.
*/
unsolvedTriangle = {
  sides: { 0: 8, 1: 5, 2: 9 }
};
const findAngle = {
  findAngle: 1
};
console.log(cosineRule(unsolvedTriangle, findAngle));
/*
{
  angles: { 1: 33.55730976192071 },
  sides: { 0: 8, 1: 5, 2: 9 }
}
*/

unsolvedTriangle = {
  angles: { 0: 60, 1: 60 },
  sides: { 1: 20 }
};
console.log(angleRule(unsolvedTriangle));
/*
{
  angles: { 0: 60, 1: 60, 2: 60 },
  sides: { 1: 20 }
}
*/

unsolvedTriangle = {
  angles: { 1: 39 },
  sides: { 1: 28, 2: 41 }
};
// if there is no solution ambiguousCaseRule will return null
console.log(ambiguousCaseRule(unsolvedTriangle));
/*
{
ambiguous: {
  angles: { 0: 28.147082985775114, 1: 39, 2: 112.85291701422489 },
  sides: { 0: 20.988713127721486, 1: 28, 2: 41 }
  }
}
*/

Contributing

A new function or a fixed regression should include matching test coverage. Commits should adhere to cz-conventional-changelog which can be done easily by running git cz or npm run commit.

License

MIT License Copyright (c) 2017 Calvin Mikael