
Product
Introducing Pull Request Stories to Help Security Teams Track Supply Chain Risks
Socket’s new Pull Request Stories give security teams clear visibility into dependency risks and outcomes across scanned pull requests.
trigonometry-equations
Advanced tools
Trigonometry rules to solve equations for angles and sides
Trigonometry rules to solve equations for angles and sides
Run:
npm install trigonometry-equations --save
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 }
}
}
*/
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.
MIT License Copyright (c) 2017 Calvin Mikael
FAQs
Trigonometry rules to solve equations for angles and sides
We found that trigonometry-equations demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Product
Socket’s new Pull Request Stories give security teams clear visibility into dependency risks and outcomes across scanned pull requests.
Research
/Security News
npm author Qix’s account was compromised, with malicious versions of popular packages like chalk-template, color-convert, and strip-ansi published.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.