Skip to content

Commit

Permalink
Added degrees() and radians() to mathmodule. Closing patch 552452 and
Browse files Browse the repository at this point in the history
feature request 426539.
  • Loading branch information
rhettinger committed May 13, 2002
1 parent 7906634 commit c045b49
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Doc/lib/libmath.tex
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,10 @@ \section{\module{math} ---
Return the hyperbolic cosine of \var{x}.
\end{funcdesc}

\begin{funcdesc}{degrees}{x}
Converts angle \var{x} from radians to degrees.
\end{funcdesc}

\begin{funcdesc}{exp}{x}
Return \code{e**\var{x}}.
\end{funcdesc}
Expand Down Expand Up @@ -99,6 +103,10 @@ \section{\module{math} ---
Return \code{\var{x}**\var{y}}.
\end{funcdesc}

\begin{funcdesc}{radians}{x}
Converts angle \var{x} from degrees to radians.
\end{funcdesc}

\begin{funcdesc}{sin}{x}
Return the sine of \var{x}.
\end{funcdesc}
Expand Down

0 comments on commit c045b49

Please sign in to comment.