File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff 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 ;
You can’t perform that action at this time.
0 commit comments