File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1005,7 +1005,7 @@ <h4 style="font-size:160%;margin:7px">Trigonometry</h4>
10051005 if ( ! match ?. angle ) return null ;
10061006 const parsed = match . angle . match ( / r a d \( ( [ \d . ] + ) \) / ) ;
10071007 if ( ! parsed ) return null ;
1008- reflectedAtan = parseFloat ( parsed [ 1 ] ) ;
1008+ radian = parseFloat ( parsed [ 1 ] ) ;
10091009 } else {
10101010 // Reflective zone
10111011 const reciprocal = 1 / x ;
@@ -1014,10 +1014,10 @@ <h4 style="font-size:160%;margin:7px">Trigonometry</h4>
10141014 const parsed = match . angle . match ( / r a d \( ( [ \d . ] + ) \) / ) ;
10151015 if ( ! parsed ) return null ;
10161016 const reflected = parseFloat ( parsed [ 1 ] ) ;
1017- reflectedAtan = parseFloat ( ( 1.6 - reflected ) . toFixed ( 3 ) ) ;
1017+ radian = 1.6 - reflected ;
10181018 }
10191019
1020- return reflectedAtan ;
1020+ return radian ;
10211021}
10221022
10231023</ script >
You can’t perform that action at this time.
0 commit comments