We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a255b77 commit 092fa17Copy full SHA for 092fa17
1 file changed
index.html
@@ -1002,7 +1002,7 @@ <h4 style="font-size:160%;margin:7px">Trigonometry</h4>
1002
1003
let radian = null;
1004
1005
- if (x >= 0.707 || x < 0.09) {
+ if (x > 0.706 || x < 0.09) {
1006
// Direct match
1007
const match = closestValue(x, 'sin');
1008
if (!match?.angle) return null;
@@ -1026,7 +1026,7 @@ <h4 style="font-size:160%;margin:7px">Trigonometry</h4>
1026
1027
1028
1029
- if (x > 0.707 && x < 0.995) {
+ if (x < 0.707 || x > 0.995) {
1030
1031
const match = closestValue(x, 'cos');
1032
0 commit comments