Skip to content

Commit 9f8a092

Browse files
authored
Update index.html
1 parent d98129f commit 9f8a092

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

index.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -706,7 +706,7 @@ <h4 style="font-size:160%;margin:7px">Trigonometry</h4>
706706
"sin": 0.99,
707707
"cos": 0.141,
708708
"tan": 7.026,
709-
"deg": 81.9
709+
"deg": 81.90
710710
},
711711

712712
"rad(1.44)": {
@@ -909,7 +909,7 @@ <h4 style="font-size:160%;margin:7px">Trigonometry</h4>
909909
"sin": 0.78,
910910
"cos": 0.625,
911911
"tan": 1.248,
912-
"deg": 51.3
912+
"deg": 51.30
913913
},
914914

915915
"rad(0.88)": {
@@ -1081,7 +1081,7 @@ <h4 style="font-size:160%;margin:7px">Trigonometry</h4>
10811081

10821082
let radian = null;
10831083

1084-
if (x >= 0.707) {
1084+
if (x >= 0.7071) {
10851085
// Direct match via sine
10861086
const match = closestValue(x, 'sin');
10871087
if (!match?.angle) return null;
@@ -1106,7 +1106,7 @@ <h4 style="font-size:160%;margin:7px">Trigonometry</h4>
11061106

11071107
let radian = null;
11081108

1109-
if (x <= 0.707) {
1109+
if (x <= 0.7071) {
11101110
// Direct match via cosine
11111111
const match = closestValue(x, 'cos');
11121112
if (!match?.angle) return null;

0 commit comments

Comments
 (0)